dotfiles/.local/bin/scripts/edit
2021-07-29 16:02:20 +02:00

8 lines
294 B
Bash
Executable file

#!/bin/sh
# Edit a file with appropriate rights, creating parent directories if necessary
test ! -f "$1" && ( mkdir -p $(dirname "$1") || sudo mkdir -p $(dirname "$1") )
echo "Editing $1..."
if test -w "$1" || (test ! -f "$1" && test -w $(dirname "$1"))
then $EDITOR "$1"
else sudoedit "$1"
fi