Sep 19, 2007 #1 tg2003 IS-IT--Management Joined Feb 6, 2003 Messages 270 Location IL Hello, Please advice me how to compare the filenames, the hierarchy and its content between of two structures. (In Windows I'm using "windiff") Thanks in advance!
Hello, Please advice me how to compare the filenames, the hierarchy and its content between of two structures. (In Windows I'm using "windiff") Thanks in advance!
Sep 19, 2007 #2 KenCunningham Technical User Joined Mar 20, 2001 Messages 8,475 Location GB Why post this in a Solaris forum? However, this might help: http://www.computerperformance.co.uk/w2k3/utilities/windiff.htm I want to be good, is that not enough? Upvote 0 Downvote
Why post this in a Solaris forum? However, this might help: http://www.computerperformance.co.uk/w2k3/utilities/windiff.htm I want to be good, is that not enough?
Sep 19, 2007 #3 WhiteVolg MIS Joined Apr 18, 2006 Messages 72 Location US Try 'man diff' for a start point. The utility windiff is a child of diff. all the best things started in UNIX.... Upvote 0 Downvote
Try 'man diff' for a start point. The utility windiff is a child of diff. all the best things started in UNIX....
Sep 19, 2007 #4 MoreFeo Technical User Joined Nov 29, 2002 Messages 547 Location ES Try ls -lR > list1.txt in one directory and ls -lR > list2.txt in the other Then make a diff between both lists with diff list1 list2 Upvote 0 Downvote
Try ls -lR > list1.txt in one directory and ls -lR > list2.txt in the other Then make a diff between both lists with diff list1 list2
Sep 19, 2007 #5 MoreFeo Technical User Joined Nov 29, 2002 Messages 547 Location ES sorry, diff list1.txt list2.txt Upvote 0 Downvote