|
|
|
|
|
by w0m
3940 days ago
|
|
It's moreso for when you spend time crafting the perfect command, and dont' want to repeat yourlself. Example.. find . -type d -print0 | sort -z | xargs --null -I '{}' du -sh '{}' | sort -h Simple and clear; but history gives you the convenience to do find<C-R><CR> and having the command run with out parameter/typo verification. |
|