1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-06-26 09:07:12 -07:00
rc/sh/e

51 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-06-28 05:22:14 -07:00
#!/bin/zsh
2019-06-05 20:14:29 -07:00
local editor=(${=EDITOR})
local running=0
if [ -n "$MSYSTEM" ]; then
2019-06-05 20:29:35 -07:00
if ps -f | awk '{print $6}' \
| grep -o '[^/]*$' | grep -qFx "${editor[1]}"; then
2019-06-05 20:14:29 -07:00
running=1
fi
elif ps -o comm | grep -qFx "${editor[1]}"; then
running=1
fi
2019-06-05 20:29:35 -07:00
if [ $running -eq 1 ]; then
2019-06-05 20:14:29 -07:00
printf "%s\n" "${editor[1]} is already running" >&2
read -q '?Continue? [y/N] ' _ || { echo; return; }
echo
fi
if [ $# -eq 0 ] || [ -n "$MSYSTEM" ]; then
2019-06-09 05:04:48 -07:00
$=EDITOR "$@"
2019-06-05 20:14:29 -07:00
return
2013-06-28 05:22:14 -07:00
fi
2015-03-06 07:14:33 -08:00
local f needroot=0
2019-06-05 20:14:29 -07:00
for f in "$@"; do
# easy: file exists, we have write permissions
[ -w "$f" ] && continue
# easy: file exists, but no write permissions
[ -e "$f" ] && { needroot=1; break }
# hard: file may be in a directory that we can't inspect
local d="$f"
while expr index "$d" / >/dev/null; do
d="${d%/*}"
# NOTE: this gets weird with the root directory, not sure how to handle
[ -e "$d" ] && [ ! -w "$d" ] && { needroot=1 && break; }
done
[ $needroot -eq 1 ] && break
# easy: file just doesn't exist
2013-06-28 05:22:14 -07:00
done
2019-06-05 20:14:29 -07:00
if [ $needroot -eq 0 ]; then
$=EDITOR "$@"
else
sudo -e "$@"
fi