/
#!/usr/bin/sh# run vim -R if availableif test -f /usr/bin/vimthen exec /usr/bin/vim -R "$@"fi# run vi otherwiseexec /usr/libexec/vi -R "$@"