Ever need to find what you changed between two files or directories? The universal way to find these differences is to use the ‘diff’ command. The diff command is used by most open source projects, and people use it to communicate their changes / bug fixes etc.

Console using diff

Console using diff

Sometimes I find the diff command to be boring. Much like my terminal prompt, I like consoles to have color. The color helps me figure out what is going on a bit quicker. Do get diffs in color, you can ’sudo apt-get install colordiff’. The resulting output will look like this instead:

Console with color diff

Console with color diff

But there are some people out there who just don’t like consoles / terminals for one reason or another. There is also a GUI based diff tool called meld. You can install meld by running ’sudo apt-get install meld’. Your diff will now look like this:

Screenshot of meld

Screenshot of meld

That is a brief overview of the tools I have found useful, using screenshots.

Related posts:

  1. New Jaunty Wallpapers Jaunty has some new wallpapers today. I like them both,...
  2. The Cherokee Webserver: Great choice for VPS’s Recently I upgraded my shared hosting plan to a VPS...
  3. Gwibber on Ubuntu Jaunty Gwibber is a tool that allows you to use social...
  4. Dropbox on Ubuntu Often times you want to keep a file in sync,...