raven-rhel6/vim/view_wrapper

11 lines
146 B
Plaintext
Raw Normal View History

2024-02-21 20:14:44 +06:00
#!/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/libexec/vi -R "$@"