Skip to content

Commit 17eb4a5

Browse files
committed
Solving all ls file questions
1 parent 407b010 commit 17eb4a5

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ 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+
9+
ls -R
10+
# shows this child-directory script-01.sh script-02.sh script-03.sh script-04.sh ./child-directory:
11+
#helper-1.txt helper-2.txt helper-3.txt

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ echo "First exercise (sorted newest to oldest):"
1515

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.
18-
18+
ls -1t
1919

2020
echo "Second exercise (sorted oldest to newest):"
2121

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

0 commit comments

Comments
 (0)