mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
14 lines
282 B
Bash
Executable file
14 lines
282 B
Bash
Executable file
#!/bin/bash
|
|
|
|
bin/rss.rb public
|
|
|
|
mkdir -p www
|
|
harp compile public www
|
|
|
|
for FILENAME in www/*.html www/posts/*.html www/projects/*.html; do
|
|
[[ "$FILENAME" = "index.html" ]] && continue
|
|
|
|
DIRNAME="${FILENAME%.html}"
|
|
mkdir -p "$DIRNAME"
|
|
mv "$FILENAME" "$DIRNAME/index.html"
|
|
done
|