I accidentally delete my python script but after I started running it so I have PID and other related information about the process. my question is, is it possible to find a way to save it on disk while it is still running? I am on Fedora 27.
Asked
Active
Viewed 152 times
2
-
Try : `lsof -p {pid}` which will give you a list of open files from the given pid - there might be a script or file hanging around somewhere – jeremycg Jul 20 '18 at 02:40
-
Thank you for your fast intervention. I see alot of so files, socket open(network) but no hanging script – lilington Jul 20 '18 at 02:45