nports/build-all.sh

7 lines
80 B
Bash
Executable File

#!/bin/sh
for f in *; do
test -d "$f" || continue
./build.sh "$f"
done