diff options
author | Patrick Simianer <p@simianer.de> | 2014-08-10 11:19:38 +0100 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-08-10 11:19:38 +0100 |
commit | 5869505d64c04c536bdcd71a197ade918c36bf1c (patch) | |
tree | 6af5232a9f2e058f15230a370a960f89871a2b74 /func.zsh |
init
Diffstat (limited to 'func.zsh')
-rw-r--r-- | func.zsh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/func.zsh b/func.zsh new file mode 100644 index 0000000..470f5db --- /dev/null +++ b/func.zsh @@ -0,0 +1,5 @@ +check_root() +{ + if [ `whoami` != root ]; then echo "Run this script as root, exiting!"; exit; fi +} + |