1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 03:35:24 +02:00

rm: add safe directory removal example (#13597)

This commit is contained in:
Managor 2024-09-04 19:08:41 +03:00 committed by GitHub
parent 5787aa4b46
commit d626baf05d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,3 +23,7 @@
- Remove specific files and directories recursively:
`rm --recursive {{path/to/file_or_directory1 path/to/file_or_directory2 ...}}`
- Remove empty directories (this is considered the safe method):
`rm --dir {{path/to/directory}}`