NetNewsWire/updateSecrets.sh

7 lines
251 B
Bash
Raw Normal View History

2019-11-26 14:58:16 +01:00
#!/bin/bash
find . -name '*.gyb' | \
while read file; do \
echo "running ${file%.gyb}"; \
gyb --line-directive '' -o "${file%.gyb}" "$file"; \
done