In Linux, how can I get a list of files currently open in program X?
(Specifically, I’m on Fedora, and the program is Zend Studio, but I assume there’s a general answer.)
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use e.g.
lsof(“list open files”) and filter the output, or use the-c programXoption to restrict it to files opened by programX. This expression can be a wildcard.