Created
June 29, 2019 06:43
-
-
Save cnglish/8333985617fa0fcfeef9084739ec1586 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
dir="./" | |
dirs=`ls -l $dir | grep '^d' | awk '{print $9}'` | |
# printf "About to process following dirs: \n${dirs}" | |
for d in $dirs; | |
do | |
printf "Processing ${d}:" | |
cd $d; ls -al; cd - | |
printf "\n" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment