We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
'Uniq' Command #1
'Uniq' Command #1
Sort by
recency
|
23 Discussions
|
Please Login in order to post a comment
!/bin/bash
rm file.txt > stdout.txt 2> stderr.txt while IFS= read -r line || [ -n "line" >> file.txt done uniq < file.txt
uniq
You Can find here HackerRank Linux Shell Solutions
Uniq Command #1 HackerRank Solution