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're not careful, mv can overwrite existing files. Move files wisely with mv --backup=existing -v. To save typing, set VERSION_CONTROL to existing.