home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 June
/
PCWorld_2005-06_cd.bin
/
software
/
vyzkuste
/
firewally
/
firewally.exe
/
framework-2.3.exe
/
less.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
2003-08-12
|
215b
|
10 lines
#!/bin/sh
# Shell script to start Vim with less.vim.
# Read stdin if no arguments were given.
if test $# = 0; then
vim -c 'so $VIMRUNTIME/macros/less.vim' -
else
vim -c 'so $VIMRUNTIME/macros/less.vim' "$@"
fi