Skip to content

Commit 6973138

Browse files
added code for sort-uniq-head-tail script 7 exercise
1 parent 89bf152 commit 6973138

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ set -euo pipefail
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.
88
# The word "Event" should not appear in your script's output.
9+
grep -c "Entry" events-with-timestamps.txt
10+
grep -c "Exit" events-with-timestamps.txt

0 commit comments

Comments
 (0)