Skip to content

Commit 6c213c5

Browse files
cat exercises complete
1 parent 1e40194 commit 6c213c5

4 files changed

Lines changed: 4 additions & 0 deletions

File tree

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
set -euo pipefail
44

55
# TODO: Write a command to output the contents of the helper-1.txt file inside the helper-files directory to the terminal.
6+
cat ../helper-files/helper-1.txt
67
# The output of this command should be "Once upon a time...".

individual-shell-tools/cat/script-02.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ set -euo pipefail
44

55
# TODO: Write a command to output the contents of all of the files inside the helper-files directory to the terminal.
66
# Make sure you are only calling `cat` once.
7+
cat ../helper-files/*
78
#
89
# The output of this command should be:
910
# Once upon a time...

individual-shell-tools/cat/script-03.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
set -euo pipefail
44

55
# TODO: Write a command to output the contents of the file `helper-3.txt` inside the helper-files directory to the terminal.
6+
cat -n ../helper-files/helper-3.txt
67
# This time, we also want to see the line numbers in the output.
78
#
89
# The output of this command should be something like:

individual-shell-tools/cat/script-04-stretch.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ set -euo pipefail
66

77
# TODO: Write a command to output the contents of all of the files in the helper-files directory to the terminal.
88
# We also want to see the line numbers in the output, but we want line numbers not to reset at the start of each file.
9+
cat -n ../helper-files/helper*
910
#
1011
# The output of this command should be something like:
1112
# 1 Once upon a time...

0 commit comments

Comments
 (0)