Issue
Is there any unix
commands that can display duplicate files
in a particular directory
.kindly let me know your comments.
id='dv3'>
Solution
You should be able to use fdupes to achieve this.
fdupes ./directory
That should list all the duplicate files in a directory, you can also pass it -r for a recursive scan into subdirectories.
Answered By - Cody Answer Checked By - David Goodson (WPSolving Volunteer)