Check These Out
?mirror : turn on options suitable for mirroring.
-p : download all files that are necessary to properly display a given HTML page.
?convert-links : after the download, convert the links in document for local viewing.
-P ./LOCAL-DIR : save all the files and directories to the specified directory.
You can exclude more system folders or individual files which are not necessary for the backup and can be recreated after the restore procedure, like /lost+found, /mnt, /media, /tmp, /usr ...
Restoring the above backup procedure is as simple as becoming root and typing:
$ tar zxpf backup.tgz -C /
You can extract any file or directory out of the backup.tgz file for recovery, for instance, if you have a corrupt or mis-configured fstab file, you could simply issue the command:
$ tar zxpf backup.tgz /ect/fstab -C /
Other options:
v add verbose option to see files processed
A far safer solution is to restore the desired files under a different directory, and then compare, move, or update the files to their original locations afterward.
usage:
:[rang]ret[!][tabstop value]
python is indent sensitive, after command
:set list
you may see your codes are mixed with tab and space
ret can help you to convert space to tab or tab to space
swap out "80" for your port of interest. Can use port number or named ports e.g. "http"
Use mencoder to concatenate (join) multiple video files together.
This is my favorite music player I use in my beloved Linux systems,server or desktop
Enjoy :-)
This will skip all initializations. Especially useful when your ~/.vimrc has something wrong.
sorts the contents of a file without the need for a second file to take the sorted output.
This was previously entered as `sort -g list.txt -o $_` but as others have pointed out the $_ references the previous command. so this would've worked had that been the second part of a command joined with && like:
cat list.txt && sort -g list.txt -o $_
The user below me Robin had the most correct command.