nports/build-all.sh

7 lines
80 B
Bash
Raw Normal View History

2021-10-23 00:43:11 +00:00
#!/bin/sh
for f in *; do
test -d "$f" || continue
./build.sh "$f"
done