]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - fsck/xfs_fsck.sh
Fix minor errors and some clarification of man pages
[thirdparty/xfsprogs-dev.git] / fsck / xfs_fsck.sh
CommitLineData
21f63869
NS
1#!/bin/sh -f
2#
3# Copyright (c) 2006 Silicon Graphics, Inc. All Rights Reserved.
4#
5
6AUTO=false
7while getopts ":aA" c
8do
9 case $c in
10 a|A) AUTO=true;;
11 esac
12done
13if $AUTO; then
14 echo "$0: XFS file system."
15else
16 echo "If you wish to check the consistency of an XFS filesystem or"
17 echo "repair a damaged filesystem, see xfs_check(8) and xfs_repair(8)."
18fi
19exit 0