[BACK]Return to xfs_info.sh CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfsprogs / growfs

File: [Development] / xfs-cmds / xfsprogs / growfs / xfs_info.sh (download)

Revision 1.9, Mon Jan 21 15:09:18 2008 UTC (9 years, 8 months ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.8: +2 -2 lines

Make xfs_info handle mount points with spaces
Merge of master-melb:xfs-cmds:30386a by kenmcd.

  Make xfs_info handle mount points with spaces

#!/bin/sh -f
#
# Copyright (c) 2000-2001 Silicon Graphics, Inc.  All Rights Reserved.
#

OPTS=""
USAGE="Usage: xfs_info [-V] [-t mtab] mountpoint"

while getopts "t:V" c
do
	case $c in
	t)	OPTS="-t $OPTARG" ;;
	V)	OPTS="-V $OPTARG" ;;
	*)	echo $USAGE 1>&2
		exit 2
		;;
	esac
done
set -- extra "$@"
shift $OPTIND
case $# in
	1)	xfs_growfs -p xfs_info -n $OPTS "$1"
		status=$?
		;;
	*)	echo $USAGE 1>&2
		exit 2
		;;
esac
exit $status