HOME


5h-3LL 1.0
DIR: /usr/bin
/usr/bin/
Upload File:
Current 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 "$@"