From 3a43f79f7764088da3f7650f7ca727b72c33b623 Mon Sep 17 00:00:00 2001 From: Eval GIF Date: Thu, 26 Dec 2024 12:07:29 -0500 Subject: [PATCH 1/2] Update Awk.txt --- Awk.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Awk.txt b/Awk.txt index b809089..172f610 100644 --- a/Awk.txt +++ b/Awk.txt @@ -55,7 +55,7 @@ ps -ef | awk '!/^root/' # . for any character, ? zero or one, * zero or more, + one or more # ^ beginning of line, $ end of line -# [] as expected +# [] is any character in it e.g. [acf-j] # | for or # Show all set variables From 502b788af06f9ddc9ca6d2cccee4d66106cfc9d1 Mon Sep 17 00:00:00 2001 From: Eval GIF Date: Thu, 26 Dec 2024 12:09:56 -0500 Subject: [PATCH 2/2] Update Bash_Piping_and_Script_Automating.txt --- Bash_Piping_and_Script_Automating.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Bash_Piping_and_Script_Automating.txt b/Bash_Piping_and_Script_Automating.txt index ec89c7d..5c21ab5 100644 --- a/Bash_Piping_and_Script_Automating.txt +++ b/Bash_Piping_and_Script_Automating.txt @@ -41,6 +41,7 @@ ls /usr/share/figlet | rev | sort | rev ls /usr/share/figlet | rev | sort | rev > fonts.txt # But it dawned on me to just use sed. sed is short for stream editor +# It is also based on ed, a very old text editor that is still on many systems man sed # so we can use a simple pattern matching format to delete lines that contain