vim/SOURCES/view_wrapper
2026-03-30 10:04:40 -04:00

11 lines
146 B
Bash

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