Files
NetNewsWire/updateSecrets.sh
2019-11-27 14:06:32 -05:00

7 lines
161 B
Bash
Executable File

#!/bin/bash
find . -name '*.gyb' |
while read file; do
echo "running ${file%.gyb}";
./Vendor/gyb --line-directive '' -o "${file%.gyb}" "$file";
done