Blob Blame History Raw
#!/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 "$@"