Meld is a visual diff and merge tool. You can compare files and folders: http://meld.sourceforge.net/
Latest Updates: files & folders RSS
-
-
diffuse – compare and merge text files: http://www.ubuntugeek.com/diffuse-graphical-tool-for-comparing-and-merging-text-files.html
-
Save in Vim/Vi Without Root Permission “:w !sudo tee %” : http://www.cyberciti.biz/faq/vim-vi-text-editor-save-file-without-root-permission/
-
rsync — a fast, versatile, remote (and local) file-copying tool: http://linux.die.net/man/1/rsync
-
dar – disk archive: http://linux.die.net/man/1/dar
-
lsof – Show all the open TCP files: lsof -i TCP or which files is a process using: lsof -w -a -p 1234
-
Save a file you edited in vim without the needed permissions: :w !sudo tee %
-
Replace a string in a group of files: rpl string1 string2 *.txt
-
Countdown with dialog: dialog –title “Processing…” –pause “This is a test.” 10 40 60
-
Encrypt and edit a file: vi -x filename
-
Copy a file using pv and watch its progress: pv sourcefile > destfile
-
A File -n- Folder Renamer: Métamorphose: http://file-folder-ren.sourceforge.net/
-
Utility to search for files: Findwild: http://kornelix.squarespace.com/findwild/
-
Sort folders by size: du -k –max-depth=1 | sort -n | cut -f2 | xargs -d ‘\n’ du -sh
-
Case insensitive searches for files: find /home -iname ‘*.csv’ -o -iname ‘*.txt’
-
Find the 20 biggest directories on the current filesystem: du -xk | sort -n | tail -20 or ( du -xSk || du -kod ) | sort -nr | head
Next Page »

