Search Results

Search: Posts Made By: tkhan9
7,202
Posted By rdcwayx
Maybe you need replace command md5sum to md5,...
Maybe you need replace command md5sum to md5, depend on your system.

With below command, you can find out any files different between two folders, not only the file name.
find /home/dir1 -type f...
7,202
Posted By yazu
Try (ksh93, bash): diff <(find DIR1 | sed...
Try (ksh93, bash):
diff <(find DIR1 | sed 's|^DIR1/||') <(find DIR2 | sed 's|^DIR2/||')
But just
diff -r -N DIR1 DIR2
should work too.
6,271
Posted By Corona688
prune doesn't take more than one name, you have...
prune doesn't take more than one name, you have to do two prunes.

find /developer/ -name 'dirtoskip1' -prune -o -name 'dirtoskip2' -prune -o -type f -mtime +30 -exec ls -l '{}' ';'

Depending on...
Showing results 1 to 3 of 3

 
All times are GMT -4. The time now is 12:00 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy