Server IP : 184.107.3.203 / Your IP : 216.73.216.51 Web Server : Apache System : Linux dedicated2.avenfashion.com.ph 4.18.0-553.40.1.el8_10.x86_64 #1 SMP Mon Feb 10 12:11:18 EST 2025 x86_64 User : adminteladeoro ( 1015) PHP Version : 8.2.28 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0555) : /usr/bin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
#!/bin/sh # Copyright (c) 2005 Silicon Graphics, Inc. # All rights reserved. # # Nathan Scott <nathans@sgi.com> # 14 Sep 2005 Initial version # TRACEOPTS="" PARSEOPTS="-b100000" USAGE="Usage: btrace [-s] [-t] [-w N] [-n N] [-b N] [-a <trace>...] [-r <dbg mnt>] <dev>..." DIRNAME=`dirname $0` while getopts "a:w:n:b:r:sthv" c do case $c in a) TRACEOPTS=$TRACEOPTS" -a "$OPTARG" ";; w) TRACEOPTS=$TRACEOPTS" -w "$OPTARG" ";; n) TRACEOPTS=$TRACEOPTS" -n "$OPTARG" ";; b) TRACEOPTS=$TRACEOPTS" -b "$OPTARG" ";; r) TRACEOPTS=$TRACEOPTS" -r "$OPTARG" ";; s) PARSEOPTS=$PARSEOPTS" -s";; t) PARSEOPTS=$PARSEOPTS" -t";; h) PARSEOPTS=$PARSEOPTS" -h";; v) PARSEOPTS=$PARSEOPTS" -v";; \?) echo $USAGE 1>&2 exit 2 ;; esac done shift `expr $OPTIND - 1` if [ $# -eq 0 ]; then echo $USAGE 1>&2 exit 2 fi ${DIRNAME}/blktrace ${TRACEOPTS} -o- $@ | ${DIRNAME}/blkparse ${PARSEOPTS} -i-