Skip to content

Commit 592fb58

Browse files
committed
ls: complete scripts 01–04
1 parent 407b010 commit 592fb58

File tree

4 files changed

+5
-0
lines changed

4 files changed

+5
-0
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ fi
1313

1414
# TODO: Write a command to list the files and folders in this directory.
1515
# The output should be a list of names including child-directory, script-01.sh, script-02.sh, and more.
16+
ls

individual-shell-tools/ls/script-02.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 which lists all of the files in the directory named child-directory.
66
# The output should be a list of names: helper-1.txt, helper-2.txt, helper-3.txt.
7+
ls child-directory

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ set -euo pipefail
55
# TODO: Write a command which _recursively_ lists all of the files and folders in this directory _and_ all of the files inside those folders.
66
# The output should be a list of names including: child-directory, script-01.sh, helper-1.txt (and more).
77
# The formatting of the output doesn't matter.
8+
ls -R

individual-shell-tools/ls/script-04.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@ echo "First exercise (sorted newest to oldest):"
1616
# TODO: Write a command which lists the files in the child-directory directory, one per line, sorted so that the most recently modified file is first.
1717
# The output should be a list of names in this order, one per line: helper-3.txt, helper-1.txt, helper-2.txt.
1818

19+
ls -t1 ./child-directory
1920

2021
echo "Second exercise (sorted oldest to newest):"
2122

2223
# TODO: Write a command which does the same as above, but sorted in the opposite order (oldest first).
2324
# The output should be a list of names in this order, one per line: helper-2.txt, helper-1.txt, helper-3.txt.
25+
ls -tr1 child-directory

0 commit comments

Comments
 (0)