9 lines
160 B
Bash
Executable file
9 lines
160 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for i
|
|
do
|
|
case $i in
|
|
/*) lynx -width=256 -dump file://$i;;
|
|
*) lynx -width=256 -dump file://`pwd`/$i;;
|
|
esac
|
|
done | grep -v 'file:///'
|