Skip to content

Commit 08bdae5

Browse files
committed
AYK_cat_exercise
1 parent 3c27d0c commit 08bdae5

4 files changed

Lines changed: 12 additions & 0 deletions

File tree

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@
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+
cd individual-shell-tools/helper-files
7+
cat helper-1.txt
68
# The output of this command should be "Once upon a time...".

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,6 @@ 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+
15+
cd individual-shell-tools/helper-files
16+
cat helper-1.txt helper-2.txt helper-3.txt

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ 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+
13+
cd individual-shell-tools/helper-files
14+
cat -n helper-3.txt

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,7 @@ 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+
17+
cd individual-shell-tools/helper-files
18+
cat helper-1.txt helper-2.txt helper-3.txt | nl
19+

0 commit comments

Comments
 (0)