Created
January 24, 2020 13:32
-
-
Save rorymalcolm/8edb9fa76ac6417bee931075001853b9 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/sh | |
| for f in *; do | |
| if [ -d "$f" ]; then | |
| # $f is a directory | |
| echo $f | |
| figlet -f cricket -w 200 $f | |
| cd $f | |
| git checkout master && git pull | |
| cd ../ | |
| fi | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment