Search code examples
linuxdebuggingstrace

Difference using strace with filters


What is the difference between using

strace -e open,read,write -p Process_ID  

And

strace -e trace=open,read,write -p Process_ID

Solution

  • There's no difference between them. trace is the default qualifier.