Skip to content

Commit a69bfc8

Browse files
author
Shaghayeghfar
committed
cheking the failed
1 parent 5e06d4d commit a69bfc8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

shell-pipelines/sort-uniq-head-tail/script-02.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# The input for this script is the scores-table.txt file.
66
# TODO: Write a command to output scores-table.txt, with lines sorted by the person's first score, descending.
77
# The first line of your output should be "Basia London 22 9 6" (with no quotes).
8-
sort -k3,3nr scores-table.txt
8+
sort -k3 -rn scores-table.txt

shell-pipelines/sort-uniq-head-tail/script-06.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ set -euo pipefail
55
# The input for this script is the events.txt file.
66
# TODO: Write a command to show how many times anyone has entered and exited.
77
# It should be clear from your script's output that there have been 5 Entry events and 4 Exit events.
8-
sort events.txt | uniq -c
8+
cat events.txt | sort | uniq -c

0 commit comments

Comments
 (0)