Skip to content

Commit cdbbce8

Browse files
committed
Answered all question for ls
1 parent 407b010 commit cdbbce8

File tree

5 files changed

+7
-0
lines changed

5 files changed

+7
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,5 @@ 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
17+

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@ 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
9+

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,11 @@ 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+
ls -t child-directory
1819

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 -tr child-directory

0 commit comments

Comments
 (0)