Skip to content

Commit 5c3fc40

Browse files
committed
chore: complete cat tasks
1 parent fea2fa7 commit 5c3fc40

4 files changed

Lines changed: 19 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
@@ -4,3 +4,4 @@ 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+
cat ../helper-files/helper-1.txt

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ 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+
cat ../helper-files/*.txt

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,19 @@ 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+
cat -n ../helper-files/helper-3.txt
13+
14+
#!/bin/bash
15+
16+
set -euo pipefail
17+
18+
# TODO: Write a command to output the contents of all of the files inside the helper-files directory to the terminal.
19+
# Make sure you are only calling `cat` once.
20+
#
21+
# The output of this command should be:
22+
# Once upon a time...
23+
# There was a house made of gingerbread.
24+
# It looked delicious.
25+
# I was tempted to take a bite of it.
26+
# But this seemed like a bad idea...
27+
cat ../helper-files/*.txt

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +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+
cat -n ../helper-files/*.txt

0 commit comments

Comments
 (0)