wget -m -q ftp://username:password@laazy.com/laazy.com // Mirror ftp directory rm -rf dirname // Deletes everything in the directory zip -r full_site_backup.zip dirname dirname2 // Zips entire directory vdir // List files and details iftop // Monitor bandwidth in real-time (2,10,40 second intervals) grep -iR pattern dirname // Search for regex pattern in directory md5sum [File] // Calculate the md5 sum of a file tar -czf [destination file] [Dir] // Creates a tar.gz file of the directory tar -xzf [source file] // Extracts a tar.gz file zip -rP password zipfile directory // Encrypts the zip file containing "directory" -- INSECURE ps -af // List out all the processes that you own mv srcFile destFile // Moves or renames a file from srcFile to destFile cp srcFile destFile // Copies srcFile to destFile cp -r srcDir destDir // Copies the srcDir and all files and directories within (maintain hierarchy) to the destDir