From 2413e9cbad620ca20b3aaffeb9cf4bb132e6113f Mon Sep 17 00:00:00 2001 From: johannst Date: Thu, 20 Feb 2025 23:05:55 +0000 Subject: deploy: 8167ecb83a8cc75da42a0b398c750d8f3aa4c44b --- cli/grep.html | 229 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 229 insertions(+) create mode 100644 cli/grep.html (limited to 'cli/grep.html') diff --git a/cli/grep.html b/cli/grep.html new file mode 100644 index 0000000..ec13766 --- /dev/null +++ b/cli/grep.html @@ -0,0 +1,229 @@ + + + + + + grep - Notes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

grep(1)

+
sort [opts] [pattern] [files]
+    -e <pattern>        pattern to search for (can be supplied multiple times)
+    -i                  ignore case in patterns
+    -v                  invert match
+
+    -n                  add line numbers to matched lines
+    -H                  add file name to matched lines
+
+    -r                  recursively read all files
+    -I                  skip binary files
+    --include <glob>    search only files matching glob
+    --exclude <glob>    skip searching files matching glob
+
+    -c                  count occurrence of matched patterns
+    -l                  list only file name which contain the pattern
+
+
+

<glob> patterns may need to be quoted or escaped if the shell also does glob expansion.

+
+ +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + -- cgit v1.2.3