10 lines
134 B
Bash
Executable file
10 lines
134 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
preproc/buildpage.sh src/style.css
|
|
|
|
find src -name "*.html" | while read f; do
|
|
preproc/buildpage.sh "$f"
|
|
done
|
|
|