10 lines
105 B
Bash
Executable file
10 lines
105 B
Bash
Executable file
#!/bin/sh
|
|
|
|
LC_ALL=C
|
|
export LC_ALL
|
|
|
|
for i in $*
|
|
do
|
|
echo === $i ===
|
|
dehtml $i | tr A-Z a-z | double
|
|
done
|