b21c3c7 bf56825 b21c3c7
1
2
3
4
5
6
7
8
9
10
#!/bin/bash #this is a shortcut for pushing project to github loober=$(cat ~/counter.txt) commit_message="Commit : $loober" git add . git commit -m "$commit_message" git push ((loober++)) echo "$loober" > ~/counter.txt