Linux Audio

Check our new training course

Linux debugging, profiling, tracing and performance analysis training

Mar 24-27, 2025, special US time zones
Register
Loading...
v6.2
 1#!/bin/bash
 2# description: r/w activity for a program, by file
 3# args: <comm>
 4if [ $# -lt 1 ] ; then
 5    echo "usage: rw-by-file <comm>"
 6    exit
 7fi
 8comm=$1
 9shift
10perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rw-by-file.pl $comm
v4.10.11
 1#!/bin/bash
 2# description: r/w activity for a program, by file
 3# args: <comm>
 4if [ $# -lt 1 ] ; then
 5    echo "usage: rw-by-file <comm>"
 6    exit
 7fi
 8comm=$1
 9shift
10perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rw-by-file.pl $comm