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