NetNewsWire/updateSecrets.sh
2019-11-26 08:58:16 -05:00

7 lines
251 B
Bash
Executable File

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