vote up 0 vote down star

Many programs have created me a huge amount of swap files. They annoy me, because some of them contain sensitive information. How should I deal with them? Is the command good idea:

find . -iname "*swp*" -exec rm '{}' \;

How should good programs handle their swap-files?

flag

2 Answers

vote up 1 vote down

depends where it's run from, but it should be fine, though I would ammend the match to be "*.swp" or "*swp" for a more perfect match

link|flag
vote up 1 vote down

if they run as your user id then the files created probably aren't readable by anyone else. If they are then you have deeper security issues.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.