You are viewing a single comment's thread. Return to all comments →
Two ways using uniq,tr, cut command
uniq -c | tr -s '[:space:]' | cut -d ' ' -f2-
uniq -c | cut -c 7-
Seems like cookies are disabled on this browser, please enable them to open this website
'Uniq' Command #2
You are viewing a single comment's thread. Return to all comments →
Two ways using uniq,tr, cut command