1#!/bin/sh
2
3for i in *.txt ; do
4echo $i
5./vp-tris $i
6done
7
8