up vote 0 down vote favorite
share [g+] share [fb]

command for remove .exe software from kubuntu 9.10

link|improve this question
1  
Can you be more descriptive? do you want to delete a file? if so that is rm filename.exe, otherwise open up a terminal and type man rm for more options – James.Elsey Feb 3 '10 at 12:46
feedback

1 Answer

If you're trying to uninstall a Windows program you're using with Wine, that's documented in the Wine Wiki.

If you're trying to remove 1 executable, you can simply use rm file.exe.

If you want to search the entire system and remove all executables:

find / -type f -name "*.exe" -exec rm {} +
link|improve this answer
feedback

Your Answer

 
or
required, but never shown