Skip to content

Commit 81d75b8

Browse files
committed
Correct path for the wc exercises
1 parent 794f494 commit 81d75b8

11 files changed

Lines changed: 11 additions & 11 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" individual-shell-tools/grep/dialogue.txt

individual-shell-tools/grep/script-02.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 that contains the word Doctor (regardless of case).
66
# The output should contain 9 lines.
77

8-
grep -i "Doctor" dialogue.txt
8+
grep -i "Doctor" individual-shell-tools/grep/dialogue.txt

individual-shell-tools/grep/script-03.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 number of lines in dialogue.txt that contain the word Doctor (regardless of case).
66
# The output should be exactly the number 9.
77

8-
grep -i "Doctor" dialogue.txt | wc -l
8+
grep -i individual-shell-tools/grep/"Doctor" dialogue.txt | wc -l

individual-shell-tools/grep/script-04.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 that does not contain the word "Hello" (regardless of case).
66
# The output should contain 10 lines.
77

8-
grep -iv "Hello" dialogue.txt
8+
grep -iv individual-shell-tools/grep/"Hello" dialogue.txt

individual-shell-tools/grep/script-05.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 that contains the string "cure", as well as the line before that line.
66
# The output should contain two pairs of two lines of text (with a separator between them).
77

8-
grep -B 1 "cure" dialogue.txt
8+
grep -B 1 "cure" individual-shell-tools/grep/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 individual-shell-tools/grep/"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 -c "Doctor" *.txt
8+
grep -c individual-shell-tools/grep/"Doctor" *.txt

individual-shell-tools/ls/script-04.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ echo "First exercise (sorted newest to oldest):"
1616
# TODO: Write a command which lists the files in the child-directory directory, one per line, sorted so that the most recently modified file is first.
1717
# The output should be a list of names in this order, one per line: helper-3.txt, helper-1.txt, helper-2.txt.
1818

19-
# ls -1t child-directory
19+
ls -1t child-directory
2020

2121
echo "Second exercise (sorted oldest to newest):"
2222

individual-shell-tools/wc/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 the number of words in the file helper-files/helper-3.txt.
66
# The output should include the number 19. The output should not include the number 92.
77

8-
wc -w helper-files/helper-3.txt
8+
wc -w individual-shell-tools/helper-files/helper-3.txt

individual-shell-tools/wc/script-02.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 number of lines in the file helper-files/helper-3.txt.
66
# The output should include the number 3. The output should not include the number 19.
77

8-
wc -l helper-files/helper-3.txt
8+
wc -l individual-shell-tools/helper-files/helper-3.txt

0 commit comments

Comments
 (0)