返回
Warning: You may not have write permissions to the file; saving may fail.
#!/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 "$@"
保存