mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-21 00:40:10 +01:00
8 lines
58 B
Bash
8 lines
58 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
for i in *.txt ; do
|
||
|
|
echo $i
|
||
|
|
./vp-tris $i
|
||
|
|
done
|
||
|
|
|