aboutsummaryrefslogtreecommitdiff
path: root/bin/mked.sh
blob: 24a61de84eb88aceddaed940b51b7f4a81436532 (plain) (blame)
1
2
3
4
5
# Create paths to all files before invoking editor
for file do
    mkdir -p -- "${file%/*}" || exit
done
exec "$EDITOR" "$@"