|
|
| File: [Development] / xfs-cmds / xfsprogs / fsck / xfs_fsck.sh (download)
Revision 1.1, Wed Feb 8 02:50:01 2006 UTC (11 years, 8 months ago) by nathans.longdrop.melbourne.sgi.com
Make fsck.xfs provide more assistance to the unwary user. Merge of master-melb:xfs-cmds:25138a by kenmcd. |
#!/bin/sh -f # # Copyright (c) 2006 Silicon Graphics, Inc. All Rights Reserved. # AUTO=false while getopts ":aA" c do case $c in a|A) AUTO=true;; esac done if $AUTO; then echo "$0: XFS file system." else echo "If you wish to check the consistency of an XFS filesystem or" echo "repair a damaged filesystem, see xfs_check(8) and xfs_repair(8)." fi exit 0