Skip to content

Instantly share code, notes, and snippets.

@mudongliang
Last active November 9, 2021 07:17
Show Gist options
  • Save mudongliang/b58fbb792f23a95cb9487af5dd1c6342 to your computer and use it in GitHub Desktop.
Save mudongliang/b58fbb792f23a95cb9487af5dd1c6342 to your computer and use it in GitHub Desktop.
Shell Template
#!/bin/bash
for dir in `ls`
do
echo $dir
#if [ -d $dir ];then
# cd $dir; XXX ; cd ..
#fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment