10 lines
135 B
Bash
Executable File
10 lines
135 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i
|
|
do
|
|
case $i in
|
|
/*) lynx -dump file://localhost$i;;
|
|
*) lynx -dump file://localhost`pwd`/$i;;
|
|
esac
|
|
done
|