File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed
individual-shell-tools/cat Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ set -euo pipefail
4
4
5
5
# TODO: Write a command to output the contents of the helper-1.txt file inside the helper-files directory to the terminal.
6
6
# The output of this command should be "Once upon a time...".
7
+ cat ../helper-files/helper-1.txt
Original file line number Diff line number Diff line change @@ -11,3 +11,4 @@ set -euo pipefail
11
11
# It looked delicious.
12
12
# I was tempted to take a bite of it.
13
13
# But this seemed like a bad idea...
14
+ cat ../helper-files/*
Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ set -euo pipefail
9
9
# 1 It looked delicious.
10
10
# 2 I was tempted to take a bite of it.
11
11
# 3 But this seemed like a bad idea...
12
+ cat -n ../helper-files/helper-3.txt
Original file line number Diff line number Diff line change @@ -13,3 +13,5 @@ set -euo pipefail
13
13
# 3 It looked delicious.
14
14
# 4 I was tempted to take a bite of it.
15
15
# 5 But this seemed like a bad idea...
16
+
17
+ cat ../helper-files/* | nl
You can’t perform that action at this time.
0 commit comments