From 0c4bf7de3604eeb00e2cf590867d43ceb2f0f85d Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Thu, 6 Dec 2018 14:25:39 +1300 Subject: Remove unneeded semicolon from sh "for VAR ; do" It turns out the semicolon belongs to the "in" syntax, and is optional without it. --- bin/u2d.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin/u2d.sh') diff --git a/bin/u2d.sh b/bin/u2d.sh index 31030341..cdbe9a33 100644 --- a/bin/u2d.sh +++ b/bin/u2d.sh @@ -10,7 +10,7 @@ fi r=$(printf '\r') # Iterate over arguments and apply the same ed(1) script to each of them -for fn ; do +for fn do # Note the heredoc WORD is intentionally unquoted because we want to expand # $r within it to get a literal carriage return; the escape characters -- cgit v1.2.3