Skip to content

Commit 18fb658

Browse files
committed
fix: correct grep patterns in dialogue scripts
1 parent 5e9aeb9 commit 18fb658

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

individual-shell-tools/grep/script-01.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# TODO: Write a command to output every line in dialogue.txt said by the Doctor.
66
# The output should contain 6 lines.
77

8-
grep "^[Doctor:]" dialogue.txt
8+
grep "^Doctor:" dialogue.txt

individual-shell-tools/grep/script-06.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# TODO: Write a command to output the name of every `.txt` file in this directory which contains a line of dialogue said by the Doctor.
66
# The output should contain two filenames.
77

8-
grep -l "^[Doctor:]" *.txt
8+
grep -l "^Doctor:" *.txt

individual-shell-tools/grep/script-07.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# TODO: Write a command to output, for each `.txt` file in this directory, how many lines of dialogue the Doctor has.
66
# The output should show that dialogue.txt contains 6 lines, dialogue-2.txt contains 2, and dialogue-3.txt contains 0.
77

8-
grep -cH "^[Doctor:]" *.txt
8+
grep -c "^Doctor:" *.txt

0 commit comments

Comments
 (0)