diff options
| author | Joe Carstairs <me@joeac.net> | 2026-08-13 16:33:51 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-08-13 16:33:51 +0100 |
| commit | 62e6bab910297aa15d76eb735ce3dd9b5417e26e (patch) | |
| tree | a98b5fb2c2663e08c21475b1092ccec395e2d87e /http/bin/cut_longlog_meta | |
| parent | f9272fdf3ea23070583c944b110a7b8f16c5a4ff (diff) | |
remove website/capsule content
Diffstat (limited to 'http/bin/cut_longlog_meta')
| -rwxr-xr-x | http/bin/cut_longlog_meta | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/http/bin/cut_longlog_meta b/http/bin/cut_longlog_meta deleted file mode 100755 index 914f455..0000000 --- a/http/bin/cut_longlog_meta +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh -e - -meta="" -read_published_on=0 -while read line -do - meta="${meta} -${line}" - if [ "$(echo "$line" | cut -c1-14)" = "Published on: " ] - then - read_published_on=1 - break - fi -done - -if [ "$read_published_on" -eq 0 ] -then - echo "$meta" - exit 0 -fi - -read line -if [ "$(echo "$line" | cut -c1-14)" = "Updated: " ] -then - meta="${meta} -${line}" -else - echo "$line" -fi - -while read line -do - echo "$line" -done |
