File tree Expand file tree Collapse file tree 4 files changed +4
-0
lines changed
individual-shell-tools/cat Expand file tree Collapse file tree 4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 33set -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...".
Original file line number Diff line number Diff line change 33set -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.
6+ cat helper-files/*
67# Make sure you are only calling `cat` once.
78#
89# The output of this command should be:
Original file line number Diff line number Diff line change 33set -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:
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ set -euo pipefail
55# NOTE: This is a stretch exercise - it is optional.
66
77# TODO: Write a command to output the contents of all of the files in the helper-files directory to the terminal.
8+ cat -n helper-files/*
89# 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.
910#
1011# The output of this command should be something like:
You can’t perform that action at this time.
0 commit comments