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