File: dehtml

package info (click to toggle)
postfix 2.11.3-1%2Bdeb8u2
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 22,360 kB
  • ctags: 16,042
  • sloc: ansic: 111,369; makefile: 14,398; sh: 5,532; perl: 2,652; python: 1,450; awk: 148
file content (9 lines) | stat: -rwxr-xr-x 135 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
#!/bin/sh

for i
do
    case $i in
    /*) lynx -dump file://localhost$i;;
     *) lynx -dump file://localhost`pwd`/$i;;
    esac
done