File Manager

Current Directory: /usr/bin
Viewing File: /usr/bin/view
#!/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 "$@"