home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Welt 2005 March
/
PCWELT_3_2005.ISO
/
pcwsoft
/
framework-2.2.exe
/
less.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
2003-08-12
|
215 b
|
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