diff options
| author | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-18 18:03:19 +0100 |
|---|---|---|
| committer | Kévin Le Gouguec <kevin.legouguec@gmail.com> | 2021-03-18 18:03:19 +0100 |
| commit | 5777566ec6d1b9a822bd61ff05e4ff709fb50051 (patch) | |
| tree | ad5f51d35e6e32479764369811528be3ff502a14 | |
| parent | c1b8f2b22dff2a1a8d911c3546e13955c9d17ca0 (diff) | |
| download | quatuorbellefeuille.com-5777566ec6d1b9a822bd61ff05e4ff709fb50051.tar.xz | |
Add missing feed building script
| -rwxr-xr-x | build-feed.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build-feed.sh b/build-feed.sh new file mode 100755 index 0000000..f537e96 --- /dev/null +++ b/build-feed.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# TODO: someday, generate both concerts page and feeds from a +# plaintext list of concerts. + +set -eu + +input=$1 +output=$2 + +. settings.sh + +sed s,'{DOMAIN}',"${domain}", "${input}" > "${output}" |
