From 99b1ab60a5c35abcc791292d37eb5c01df562256 Mon Sep 17 00:00:00 2001 From: Mingye Wang Date: Fri, 18 Sep 2015 21:51:50 -0400 Subject: [PATCH] Updated SC2002 (markdown) --- SC2002.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SC2002.md b/SC2002.md index 706efc7..8fde7a5 100644 --- a/SC2002.md +++ b/SC2002.md @@ -10,7 +10,7 @@ cat file | tr ' ' _ | grep a_ ```sh tr ' ' _ < file | grep a_ -< file tr ' ' _ | grep a_ # notice: simple commands only -- won't work with componds +< file tr ' ' _ | grep a_ # warn: simple commands only -- won't work with componds ``` ### Rationale: