|
Revision 4526, 339 bytes
(checked in by erijo, 2 years ago)
|
|
Removed svn:keywords from all files that don't need it. May make your
checkout a tiny bit faster :)
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/sh |
|---|
| 2 | # |
|---|
| 3 | # A shell script to view a url using lynx and xterm |
|---|
| 4 | # Set the XTERM variable to where your xterm binary is and |
|---|
| 5 | # the LYNX variable to where your lynx binary is or |
|---|
| 6 | # leave them as is if the binaries are in your path. |
|---|
| 7 | # |
|---|
| 8 | # Graham Roff, February 1999. |
|---|
| 9 | # |
|---|
| 10 | |
|---|
| 11 | NCFTP=ncftp |
|---|
| 12 | XTERM=xterm |
|---|
| 13 | |
|---|
| 14 | ${XTERM} -title "Licq URL View" -e ${NCFTP} "$1" |
|---|