Andy Pieters wrote:
| Thank you. It is helpfull. | | So I wanted to see what files an application access when it starts.
There's another cool way:
strace yourapp
And if you just want to see what files are opened by the application, you can ask strace only to print the "open" syscall:
strace -e open <command>