vim/view_wrapper
2021-02-08 07:01:18 +01:00

11 lines
158 B
Bash

#!/usr/bin/sh
# run vim -R if available
if test -f /usr/libexec/vim
then
exec /usr/libexec/vim -R "$@"
fi
# run vi otherwise
exec /usr/libexec/vi -R "$@"