I would like to delete all the emacs backup (~) files from subfolders.
I am aware that I can cd
in every single folder and delete them using rm *~
(e.g. for backup file test.cpp~).
How I can delete these files with one command, without cd'ing in every folder?
(I tried rm -r *~
and rm -rf *~
but they don't seem to work)