Command Line Utilities: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 7: | Line 7: | ||
* --no-p: this will disable permissions synchronization. | * --no-p: this will disable permissions synchronization. | ||
* --no-o: this will disable owner synchronization. | * --no-o: this will disable owner synchronization. | ||
== Tricks and tips == | |||
* Redirecting all outputs to a file: | |||
foo &> bar | |||
To redirect only stderr: | |||
foo 2> bar |
Revision as of 13:18, 10 January 2008
This is a collection of random useful command line tools.
- To obtain the space available on a HD: df -h
rsync
- --no-p: this will disable permissions synchronization.
- --no-o: this will disable owner synchronization.
Tricks and tips
- Redirecting all outputs to a file:
foo &> bar
To redirect only stderr:
foo 2> bar