Find files that ends with tilde

Find files:

find . -type f -name '*~'

To delete the files:

find . -type f -name '*~' -exec rm -f '{}' \;

Delete windows recovery partition

 Run in terminal as admin: Diskpart list disk select disk 0 list partition select partition X delete partition override

Mais vistos