Skip to content

Commit e409630

Browse files
committed
Fix script-06.sh solution.
1 parent 6e3fb35 commit e409630

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

0 commit comments

Comments
 (0)