9 lines
294 B
Bash
Executable File
9 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
|