1N/A#!/usr/sbin/dtrace -s
1N/A/*
1N/A * filebyproc.d - snoop files opened by process name. DTrace OneLiner.
1N/A *
1N/A * This is a DTrace OneLiner from the DTraceToolkit.
1N/A *
1N/A * $Id: filebyproc.d 3 2007-08-01 10:50:08Z brendan $
1N/A */
1N/A
1N/Asyscall::openat*:entry { printf("%s %s", execname, copyinstr(arg1)); }