df.tips
How do I delete the content of the current folder (including subfolders and hidden files) via Bash?
Unix
Bash
bash
,
filesystem
,
unix
dmitrii_fediuk
(Dmitrii Fediuk)
February 3, 2024, 9:28am
2
rm -rf {,.[!.],..?}*
coderwall.com/p/kksf5q/delete-all-files-including-hidden-ones-with-just-one-rm
show post in topic