1N/A#!/usr/sbin/dtrace -s
1N/A/*
1N/A * writebytes.d - write bytes by process name. DTrace OneLiner.
1N/A *
1N/A * This is a DTrace OneLiner from the DTraceToolkit.
1N/A *
1N/A * $Id: writebytes.d 3 2007-08-01 10:50:08Z brendan $
1N/A */
1N/A
1N/Asysinfo:::writech { @bytes[execname] = sum(arg0); }