From 25783720449bad88c3589043d18ff52cd3fcdb2d Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Tue, 26 Nov 2019 23:49:27 +0100 Subject: [PATCH] extrace: add page --- pages/linux/extrace.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/extrace.md diff --git a/pages/linux/extrace.md b/pages/linux/extrace.md new file mode 100644 index 000000000..601bacfe2 --- /dev/null +++ b/pages/linux/extrace.md @@ -0,0 +1,24 @@ +# extrace + +> Trace exec() calls. +> More information: . + +- Trace all program executions occurring on the system: + +`sudo extrace` + +- Run a command and only trace descendants of this command: + +`sudo extrace {{command}}` + +- Print the current working directory of each process: + +`sudo extrace -d` + +- Resolve the full path of each executable: + +`sudo extrace -l` + +- Display the user running each process: + +`sudo extrace -u`