citadel

My dotfiles, scripts and nix configs
git clone git://jb55.com/citadel
Log | Files | Refs | README | LICENSE

commit 1fef40d084293aeaebe4279f2f4d16bd0a1a9473
parent 634a7279d20782f38ea832005689db839d32345c
Author: William Casarin <jb55@jb55.com>
Date:   Sun,  8 Nov 2020 18:32:07 -0800

bin/plainweb: curl redirects

Diffstat:
Mbin/plainweb | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/plainweb b/bin/plainweb @@ -5,6 +5,6 @@ if [ -z "$2" ]; then exit 1 fi -curl -s "$1" | pandoc -f html -t plain - -o "$2" +curl -sL "$1" | pandoc -f html -t plain - -o "$2" exec lessr "$2"