You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
216 B

#!/bin/sh
MAN8="debugfs badblocks e2fsck mke2fs dumpe2fs mklost+found \
fsck tune2fs"
MAN1="lsattr chattr"
for i in $MAN8
do
man -S 8 $i > /dev/null
done
for i in $MAN1
do
man -S 1 $i > /dev/null
done
exit 0