How do I find duplicate files in a given set of directories and delete them using a shell script or a command line options? How do I get rid of double duplicates files stored in ~/foo and /u2/foo directory?
{ 13 comments }
Q. How do I search Linux box for a file? A. You need to use find command, which search for files in a directory hierarchy (file system) and prints information about the files it found. It is run like as follows: find {dir-name} -name {file-name} Find command examples Find out file called foo.txt: # find [...]
{ 9 comments }