8 lines
58 B
Bash
Executable File
8 lines
58 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for i in *.txt ; do
|
|
echo $i
|
|
./vp-tris $i
|
|
done
|
|
|