Back to home

Archive

Posts tagged “linux”

2 entries tagged “linux”.

Browse by tag

Blog Post

Strace

Quick strace command that I use all the time to see what files a process is opening: strace -f <command> 2>&1 | grep ^open Really useful to see what config files something is reading (and the order) or to see what…

Read more