Please enable JavaScript.
Coggle requires JavaScript to display documents.
Unix(cs252), unix commands - Coggle Diagram
-
unix commands
regular expressions
-
-
used by
-
-
-
egrep
( is a special character, must be inclosed in quotes when used as a regex in egrep
-
-
principle rules
-
if a set of regexs are concatenated to form a larger one, it will match any string concatenated from strings matching the regexs in the same order
-
-
operators
-
square brackets []
any set of chars within [] will match any string containing any one of those enclosed chars, unless the set beings with ^
-
-
" vs ' vs `
backticks explicitly tell the shell to run its contents as a command, double and single quotes tell it to treat them as non-special characters
script
-
ex given in file dotest1
-
edit script such that when executing with a single file, it would go to a corresponding output
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-