From 11bbb2bb9d1412b4971b784cba59f7da54977ebd Mon Sep 17 00:00:00 2001 From: Uggla Date: Tue, 11 Aug 2015 13:54:12 +0200 Subject: [PATCH] Fix for #146. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10ea84e..5e21d46 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Notes: - Learn about redirection of output and input using `>` and `<` and pipes using `|`. Know `>` overwrites the output file and `>>` appends. Learn about stdout and stderr. -- Learn about file glob expansion with `*` (and perhaps `?` and `{`...`}`) and quoting and the difference between double `"` and single `'` quotes. (See more on variable expansion below.) +- Learn about file glob expansion with `*` (and perhaps `?` and `[`...`]`) and quoting and the difference between double `"` and single `'` quotes. (See more on variable expansion below.) - Be familiar with Bash job management: `&`, **ctrl-z**, **ctrl-c**, `jobs`, `fg`, `bg`, `kill`, etc.