mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-18 07:18:06 +02:00
7 lines
58 B
Bash
Executable file
7 lines
58 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for i in *.txt ; do
|
|
echo $i
|
|
./vp-tris $i
|
|
done
|
|
|