1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 04:55:32 +02:00

strace.md: Added option to start an executable (#979)

* updated strace.md with starting a program

* fixed errors, and followed same `` guide

* removed extraneous space
This commit is contained in:
Kyle Sweeney 2016-08-22 07:59:39 -04:00 committed by Leandro Ostera
parent 29b0d77e29
commit 111d8aae0f

View file

@ -17,3 +17,7 @@
- Show the time spent in every system call:
`strace -p {{pid}} -T`
- Start tracing a program by executing it:
`strace {{program}}`