Tagged Questions
4
votes
1answer
338 views
recovering deleted file held open by apache?
suppose an apache log file gets deleted but its held open by apache then this is what i am doing.
pid=$(lsof | grep text.txt | awk '/deleted/ {print $2}')
fd=$(lsof | grep text.txt | awk '/deleted/ ...
2
votes
1answer
1k views
Recovered deleted files on Mac by command line
I accidentally deleted a file by running:
rm -rf ./Desktop/myScript.sh
I think it's possible to recover the file, because the rm command removes temporarily. How can I recover the deleted file on ...
2
votes
1answer
92 views
How to run a command against all the files of particular types on a filesystem?
I've just recovered tons of files (distributed in a complex directory structure, having very long names, using Unicode symbols, spaces etc in names) from a damaged hard drive. Now I'd like to verify ...