10 lines
190 B
Bash
Executable file
10 lines
190 B
Bash
Executable file
#!/usr/bin/env zsh
|
|
|
|
# author: Daniel Sommer <daniel.sommer@velvettear.de>
|
|
# license: MIT
|
|
|
|
# share zsh history
|
|
setopt SHARE_HISTORY
|
|
|
|
# exit if user is not root
|
|
[[ "$EUID" != "0" ]] && return
|