Skip to main content
The 2024 Developer Survey results are live! See the results

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 1
    md5sum * | grep $(md5sum * | awk '{print $1}' | sort | uniq -c | grep " 1 " | awk '{print $2}' | head -1) | awk '{print $2}'
    – tater
    Commented Aug 21, 2020 at 11:30
  • @tetech thanks :) i find simplest solution, i mean 'md5sum * | sort -r | head -n1 | awk '{print $2}'
    – PawelC
    Commented Aug 21, 2020 at 11:39
  • 1
    Cool, sure, it was not a real "answer" just to get you started with ideas.
    – tater
    Commented Aug 21, 2020 at 11:51