17 lines
312 B
Plaintext
Raw Normal View History

2021-02-13 19:28:59 +03:00
#!/usr/bin/env sh
# Description: Edit file as superuser
#
# Shell: POSIX compliant
# Author: Anna Arad
EDITOR="${EDITOR:-vim}"
if type sudo >/dev/null 2>&1; then
2021-02-13 19:28:59 +03:00
sudo "$EDITOR" "$1"
elif type sudoedit >/dev/null 2>&1; then
2021-02-13 19:28:59 +03:00
sudoedit "$1"
elif type doas >/dev/null 2>&1; then
2021-02-13 19:28:59 +03:00
doas "$EDITOR" "$1"
fi