mirror of
https://github.com/sahinakkaya/til.git
synced 2025-04-19 17:22:07 +02:00
14 lines
175 B
Markdown
14 lines
175 B
Markdown
You can loop through the files with:
|
|
```bash
|
|
for f in * ; do
|
|
echo $f
|
|
done
|
|
```
|
|
|
|
If you want to loop through only directories:
|
|
```bash
|
|
for d in */ ; do
|
|
echo $d
|
|
done
|
|
```
|