I want to delete an executable after I start the process.

I tried by putting unlink and it work fine, but I want my executable to continue running.

Is using the unlink approach correct? Are there any issues with using this approach?

link|improve this question

Are you asking for help writing malware? – R.. Mar 17 '11 at 13:52
No I am not writing malware. – Avinash Mar 17 '11 at 18:11
feedback

1 Answer

up vote 8 down vote accepted

On Unix, there shouldn't be any problems unlinking the executable of a running process.

When you unlink a file, the directory entry is removed, but the inode and the underlying data are not freed until all existing references to the file (i.e. hard links and open handles) are released.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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