From 199affaeaf929301f2ad11caad122b857ea81570 Mon Sep 17 00:00:00 2001 From: Alan Brogan Date: Tue, 16 Jun 2015 13:11:04 +0100 Subject: [PATCH] Use 80 as width, not filename MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In trying the `taocl` function I get the error ```shell $ taocl fmt: cannot open ‘80’ for reading: No such file or directory ``` Looks like the final phrase should use the `80` as an option, ... `| fmt -80` (or `| fmt --width=80`) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0044b6a..06eaa0e 100644 --- a/README.md +++ b/README.md @@ -262,7 +262,7 @@ A few examples of piecing together commands: pandoc -f markdown -t html | xmlstarlet fo --html --dropdtd | xmlstarlet sel -t -v "(html/body/ul/li[count(p)>0])[$RANDOM mod last()+1]" | - xmlstarlet unesc | fmt 80 + xmlstarlet unesc | fmt -80 } ```