FollieHiyuki-dotfiles/home/.config/nnn/plugins/suedit

17 lines
312 B
Plaintext
Raw Normal View History

2021-02-13 11:28:59 -05: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 11:28:59 -05:00
sudo "$EDITOR" "$1"
elif type sudoedit >/dev/null 2>&1; then
2021-02-13 11:28:59 -05:00
sudoedit "$1"
elif type doas >/dev/null 2>&1; then
2021-02-13 11:28:59 -05:00
doas "$EDITOR" "$1"
fi