mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 22:22:07 +02:00
259 B
259 B
rmdir
Removes a directory.
- Remove directory, provided it is empty. Use
rm -r
to remove non-empty directories:
rmdir {{path/to/directory}}
- Remove the target and its parent directories (useful for nested dirs):
rmdir -p {{path/to/directory}}