aboutsummaryrefslogtreecommitdiff
path: root/scripts/scsi_satl
diff options
context:
space:
mode:
authorDouglas Gilbert <dgilbert@interlog.com>2009-08-27 17:25:38 +0000
committerDouglas Gilbert <dgilbert@interlog.com>2009-08-27 17:25:38 +0000
commit2e8cfd4876cad107f930a8940c5f65c6b64507ca (patch)
treee714da171fe51011ff9e6ddc98efffc64efc48df /scripts/scsi_satl
parentc6737e9da997d3dac104a489a8c79459ba43e099 (diff)
downloadsg3_utils-2e8cfd4876cad107f930a8940c5f65c6b64507ca.tar.gz
preliminary spc4r21 sync, manpages for extended scsi_start and scsi_stop
git-svn-id: https://svn.bingwo.ca/repos/sg3_utils/trunk@291 6180dd3e-e324-4e3e-922d-17de1ae2f315
Diffstat (limited to 'scripts/scsi_satl')
-rwxr-xr-xscripts/scsi_satl18
1 files changed, 13 insertions, 5 deletions
diff --git a/scripts/scsi_satl b/scripts/scsi_satl
index 2bbdf195..12b4c10a 100755
--- a/scripts/scsi_satl
+++ b/scripts/scsi_satl
@@ -24,11 +24,12 @@
# This script uses utilities from sg3_utils package (version
# 1.22 or later) and sdparm (version 0.99 or later)
#
-# Douglas Gilbert 20080328
+# Douglas Gilbert 20090815
-quiet=0
log=0
+quiet=0
+verbose=""
file_err=0
inv_opcode=0
@@ -47,10 +48,11 @@ total_err=0
usage()
{
- echo "Usage: scsi_satl [-h] [-L] [-q] <device>"
+ echo "Usage: scsi_satl [-h] [-L] [-q] [-v] <device>"
echo " where: -h, --help print usage message"
echo " -L, --log append stderr to 'scsi_satl.err'"
echo " -q, --quiet suppress some output"
+ echo " -v, --verbose more verbose output"
echo ""
echo "Check <device> for SCSI to ATA Translation Layer (SATL) support"
}
@@ -71,6 +73,7 @@ while test ! -z "$opt" -a -z "${opt##-*}"; do
h|-help) usage ; exit 1 ;;
L|-log) let log=$log+1 ;;
q|-quiet) let quiet=$quiet+1 ;;
+ v|-verbose) verbose="-v" ;;
*) echo "Unknown option: -$opt " ; exit 1 ;;
esac
shift
@@ -87,9 +90,14 @@ do
if [ $log -eq 0 ]
then
- $command $1 > /dev/null 2>> /dev/null
+ if [ $verbose ]
+ then
+ $command $verbose $1 > /dev/null
+ else
+ $command $1 > /dev/null 2>> /dev/null
+ fi
else
- $command $1 > /dev/null 2>> scsi_satl.err
+ $command $verbose $1 > /dev/null 2>> scsi_satl.err
fi
res=$?
case "$res" in