We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05c4f1d commit 554d1cdCopy full SHA for 554d1cd
2 files changed
individual-shell-tools/cat/script-02.sh
@@ -11,4 +11,8 @@ set -euo pipefail
11
# It looked delicious.
12
# I was tempted to take a bite of it.
13
# But this seemed like a bad idea...
14
-cat ../helper-files/helper-1.txt ../helper-files/helper-2.txt ../helper-files/helper-3.txt
+
15
16
17
+# cat ../helper-files/helper-1.txt ../helper-files/helper-2.txt ../helper-files/helper-3.txt
18
+cat ../helper-files/*
individual-shell-tools/grep/script-03.sh
@@ -4,4 +4,8 @@ set -euo pipefail
4
5
# TODO: Write a command to output the number of lines in dialogue.txt that contain the word Doctor (regardless of case).
6
# The output should be exactly the number 9.
7
-grep -i 'Doctor' dialogue.txt | wc -l
8
9
+# grep -i 'Doctor' dialogue.txt | wc -l
10
+grep -ic 'Doctor' dialogue.txt
0 commit comments