mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-27 13:34:00 +01:00
11 lines
281 B
D
Executable File
11 lines
281 B
D
Executable File
#!/usr/sbin/dtrace -s
|
|
/*
|
|
* creatbyproc.d - file creat()s by process name. DTrace OneLiner.
|
|
*
|
|
* This is a DTrace OneLiner from the DTraceToolkit.
|
|
*
|
|
* $Id: creatbyproc.d 3 2007-08-01 10:50:08Z brendan $
|
|
*/
|
|
|
|
syscall::creat*:entry { printf("%s %s", execname, copyinstr(arg0)); }
|