From 736febaa3c1d6bef2ad7a1bccf0b68fdb87c945b Mon Sep 17 00:00:00 2001 From: Neil Greenwood Date: Mon, 18 Jan 2016 14:53:15 +0000 Subject: [PATCH] Update README.md Fix missing quote in `sed` example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c7a00c..b2a8034 100644 --- a/README.md +++ b/README.md @@ -279,7 +279,7 @@ ShellCheck recognizes a menagerie of other issues: #!/bin/bash -x -e # Common shebang errors echo $((n/180*100)) # Unnecessary loss of precision ls *[:digit:].txt # Bad character class globs - sed 's/foo/bar/ file > file # Redirecting to input + sed 's/foo/bar/' file > file # Redirecting to input ## Testimonials