Merge branch 'x86-mm-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git...
[pandora-kernel.git] / tools / perf / scripts / perl / bin / rw-by-file-report
1 #!/bin/bash
2 # description: r/w activity for a program, by file
3 # args: <comm>
4 if [ $# -lt 1 ] ; then
5     echo "usage: rw-by-file <comm>"
6     exit
7 fi
8 comm=$1
9 shift
10 perf trace $@ -s ~/libexec/perf-core/scripts/perl/rw-by-file.pl $comm
11
12
13