Skip to content

Commit 7330f58

Browse files
committed
refacoring the code
1 parent f5cee54 commit 7330f58

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +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 "${script_dir}/child-directory"
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 -1tr "${script_dir}/child-directory"
24+
ls -1tr "${script_dir}/child-directory"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ set -euo pipefail
44

55
# TODO: Write a command to output input.txt replacing every occurrence of the string "We'll" with "We will".
66
# The output should contain 11 lines.
7-
sed 's/We'\''ll/We will/g' input.txt
7+
sed "s/We'll/We will/g" input.txt

0 commit comments

Comments
 (0)