X7ROOT File Manager
Current Path:
/usr/share/doc/lynx/samples
usr
/
share
/
doc
/
lynx
/
samples
/
📁
..
📄
blue-background.lss
(3.14 KB)
📄
bright-blue.lss
(2.22 KB)
📄
cernrules.txt
(33.75 KB)
📄
home.htm
(743 B)
📄
installdirs.html
(701 B)
📄
jumps.htm
(654 B)
📄
jumpsUnix.html
(3.6 KB)
📄
jumpsVMS.html
(1.38 KB)
📄
keepviewer
(606 B)
📄
lynx-demo.cfg
(1.02 KB)
📄
lynx-keymaps
(5.13 KB)
📄
lynx.com
(2.14 KB)
📄
lynx.ico
(5.05 KB)
📄
lynx.lss
(3.5 KB)
📄
lynx_bookmarks.htm
(825 B)
📄
lynxdump
(398 B)
📄
mailcap
(4.66 KB)
📄
mailto-form.pl
(9.2 KB)
📄
midnight.lss
(2.01 KB)
📄
mild-colors.lss
(1.81 KB)
📄
mime.types
(1022 B)
📄
oldlynx
(518 B)
📄
opaque.lss
(1.07 KB)
Editing: keepviewer
#!/bin/sh # This script can be invoked as a wrapper for an external viewer by lynx, e.g., # given this line in lynx.cfg # XLOADIMAGE_COMMAND:keepviewer xli %s & # it will invoke xli on a hardlink to the file (which is assumed to be in the # temporary directory created by lynx), and clean up when the viewer exits. # # Parameters: # $1 is viewer # $2 is filename if test $# = 2 ; then chmod 600 $2 myfile=`echo $2 | sed -e 's@\(.*/tmp/\)\([^/]*/\)\?\(.*\)@\1my\3@'` ln $2 $myfile || exit 1 trap "rm -f $myfile" 0 1 2 5 15 eval $1 $myfile else echo "Usage: keepviewer <viewer> <filename>" exit 1 fi
Upload File
Create Folder