• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/tools/perf/scripts/perl/bin/
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 trace $@ -s ~/libexec/perf-core/scripts/perl/rw-by-file.pl $comm
11
12
13
14