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