6 lines
58 B
Bash
Executable File
6 lines
58 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for f in $1.in/*; do
|
|
$1 < $f >/dev/null
|
|
done
|