This file contains 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
With normal user: | |
If repository is empty. | |
$ mkdir REPO | |
$ cd REPO | |
$ touch README.md | |
$ git init | |
$ git add README.md | |
$ git commit -m "Message to be public displayed" |
This file contains 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/bash | |
function naosaionao { | |
echo "Vou não, saio não, posso não ..." | |
} | |
trap naosaionao SIGHUP | |
while [ true ]; do | |
sleep 5 |