HackerRank ‘Uniq’ Command #1 problem solution YASH PAL, 31 July 2024 In this HackerRank ‘Uniq’ Command #1 problem solution In this challenge, we practice using the uniq command to eliminate consecutive repetitions of a line when a text file is piped through it. we have given a text file, remove the consecutive repetitions of any line. Plain Uniq If this is the file test.txt: 00 00 01 01 00 00 02 02 This is the output on passing it through the uniq command, either via pipes or as input via STDIN: Command: uniq < test.txt 00 01 00 02 The first two lines of the original file are the same, (00). The next two lines are (01) which are followed by two repetitions of (00) again and two repetitions of (02). The uniq command replaces the consecutive repetitions with only one line in each case. Other possible options: Limit comparison only to the first N characters (using the -w option). Avoid comparing the first N characters (using the -s option). Ignore variations in case between lines (using the -i option). Avoid comparing the first N fields (using the -f option). Prints those lines that are succeeded and preceded by different lines (using the -u option). Prints those lines that are followed by one or more repetitions immediately after them (using the -d option). Print the count of repetitions for each of the lines it collapses (using -c option). Problem solution. uniq coding problems linux shell