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