mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
7 lines
161 B
Bash
Executable File
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 |