BraianNunes / shell_scripts

Shell scripts and tips

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shell scripts and tips

Directory

Enter in any folder recursively

for d in */ ; do 
  echo "$d"
done

About

Shell scripts and tips