mirror of
https://github.com/sahinakkaya/til.git
synced 2025-07-05 19:49:41 +03:00
175 B
175 B
You can loop through the files with:
for f in * ; do
echo $f
done
If you want to loop through only directories:
for d in */ ; do
echo $d
done