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: