7 lines
79 B
Bash
7 lines
79 B
Bash
#!/bin/sh
|
|
|
|
for file
|
|
do
|
|
echo ==== $file ====
|
|
deroff $file | double
|
|
done
|