Last active
April 9, 2023 21:56
-
-
Save Goorzhel/ddc09f3b60c53735249c765b21fb9c20 to your computer and use it in GitHub Desktop.
Revisions
-
Goorzhel renamed this gist
Apr 9, 2023 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Goorzhel revised this gist
Oct 16, 2018 . 1 changed file with 1 addition and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,3 @@ #!/bin/bash [[ $EUID -ne 0 ]] && echo "What? Make it yourself." || echo "Okay." -
Antonio Gurgel renamed this gist
Jan 16, 2017 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Antonio Gurgel created this gist
Jan 16, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ #!/bin/bash if [[ $EUID -ne 0 ]]; then echo "What? Make it yourself." else echo "Okay." fi