'Uniq' Command #2, is a HackerRank problem from Text Processing subdomain. In this post we will see how we can solve this challenge in Sh

Problem Description

In this challenge, we practice using the uniq command to eliminate consecutive repetitions of a line when a text file is piped through it. Given a text file, count the number of times each line repeats itself. Only consider consecutive repetitions. Display the space separated count and line, respect ....

You can find the full details of the problem 'Uniq' Command #2 at HackerRank

Solution: Please check the the-uniq-command-2.sh snippet for the solution.

This solution originally posted at: Github by @srgnk