I have two directories - one from earlier backup and second from newest backup. How do i compare what changes were made to files in directory from newest backup on Linux? Also how do i display changes in for example text and php files - i'm thinking about something like revision history on wikipedia where you see old version on one side of the screen and newest version on other and changes are highlighted. How do i achieve something like that?
edit: How do i also compare remote dir with local?
Start NFS on server-b (/etc/init.d/nfs start) Mount to your local server(server-a) by adding the following to /etc/fstab: server-b.ip.add:/path/of/directory/to/share /mnt/server-b nfs rsize=32768,wsize=32768,rw 0 0
Then on server-a, mkdir /mnt/server-b; mount /mnt/server-b Thanks for the upvotes.
– Sean Staats Aug 27 '09 at 12:40sshfsto create an ad-hoc temporary networked directory, instead of using NFS. – Dan Andreatta Apr 07 '10 at 21:47--no-dereferenceoption – Jonas Berlin Dec 24 '21 at 07:18