Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- apps=$(find $HOME/apps -maxdepth 1 -type d )
- for i in $apps; do
- [ $i == "$HOME/apps" ] && continue
- cd $i
- git pull
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement