File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
individual-shell-tools/cat Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,5 +4,5 @@ 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.
66# The output of this command should be "Once upon a time...".
7- cyf@MacBookPro individual-shell-tools % cat helper-files/helper-1.txt
7+ cat helper-files/helper-1.txt
88
Original file line number Diff line number Diff line change @@ -11,5 +11,5 @@ set -euo pipefail
1111# It looked delicious.
1212# I was tempted to take a bite of it.
1313# But this seemed like a bad idea...
14- cyf@MacBookPro individual-shell-tools % cat helper-files/helper-* .txt
14+ cat helper-files/helper-* .txt
1515
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ set -euo pipefail
99# 1 It looked delicious.
1010# 2 I was tempted to take a bite of it.
1111# 3 But this seemed like a bad idea...
12- cyf@MacBookPro individual-shell-tools % cat -n helper-files/helper-3.txt
12+ cat -n helper-files/helper-3.txt
Original file line number Diff line number Diff line change @@ -13,4 +13,4 @@ set -euo pipefail
1313# 3 It looked delicious.
1414# 4 I was tempted to take a bite of it.
1515# 5 But this seemed like a bad idea...
16- cyf@MacBookPro individual-shell-tools % cat helper-files/* | nl -v 1 -n ln
16+ cat helper-files/* | nl -v 1 -n ln
You can’t perform that action at this time.
0 commit comments