11 lines
150 B
Plaintext
11 lines
150 B
Plaintext
|
#!/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/libexec/vi -R "$@"
|