tip of the day

byo71's picture
Communications | Debian Support

Use mkdir -p to create a directory hierarchy all at once.
For example:
mkdir -p a/b/c/d makes directory d in directory c in directory b in directory a.

byo71's picture

tip of the day

If you use less as your pager, you can quickly shift from viewing the file to monitoring additions to the file by pressing Shift-F. less changes to watch the end of the file and shows you text as it's appended. Also, try the -N option to display line numbers.