9 lines
169 B
Bash
9 lines
169 B
Bash
|
#!/usr/bin/env zsh
|
||
|
|
||
|
# author: Daniel Sommer <daniel.sommer@velvettear.de>
|
||
|
# license: MIT
|
||
|
|
||
|
# exit if user is not root
|
||
|
[[ "$EUID" != "0" ]] && return
|
||
|
echo "LOGIN AS ROOT"
|