diff --git a/scripts/fsadm.sh b/scripts/fsadm.sh index 1b673d8b2..5ac6fd95b 100644 --- a/scripts/fsadm.sh +++ b/scripts/fsadm.sh @@ -64,24 +64,26 @@ REMOUNT= IFS_OLD=$IFS tool_usage() { - echo "${TOOL}: Utility to resize underlying filesystem" - echo "Usage:" - echo " ${TOOL} [options] check|resize device [size]" - echo " -h | --help show this help" - echo " -v | --verbose be verbose" - echo " -f | --force forces to proceed" - echo " -e | --ext-offline unmount filesystem before Ext2/3 resize" - echo " -n | --dry-run print commands rather than running them" - echo " -y | --yes answer \"yes\" to automatically proceed" - echo " check run fsck" - echo " resize resize given device to new size" - echo " size in filesystem blocks" - echo " add B to specify Bytes (i.e.: 1000000B)" - echo " add K to specify KiloBytes (1024B)" - echo " add M to specify MegaBytes (1024KB)" - echo " add G to specify GigaBytes (1024MB)" - echo " add T to specify TeraBytes (1024GB)" - echo " (if unspecified full device is used)" + echo "${TOOL}: Utility to resize or check the filesystem on a device" + echo + echo " ${TOOL} [options] check device" + echo " - Check the filesystem on device using fsck" + echo + echo " ${TOOL} [options] resize device [new_size[BKMGT]]" + echo " - Change the size of the filesystem on device to new_size" + echo + echo " Options:" + echo " -h | --help Show this help message" + echo " -v | --verbose Be verbose" + echo " -e | --ext-offline unmount filesystem before Ext2/3 resize" + echo " -f | --force Bypass sanity checks" + echo " -n | --dry-run Print commands without running them" + echo " -y | --yes Answer \"yes\" at any prompts" + echo + echo " new_size - Absolute number of filesystem blocks to be in the filesystem," + echo " or an absolute size using a suffix (in powers of 1024)." + echo " If new_size is not supplied, the whole device is used." + exit }