13 lines
225 B
Text
13 lines
225 B
Text
|
at:
|
||
|
no non-forking mode
|
||
|
fsck:
|
||
|
returns non-zero if it repaired something.
|
||
|
You have to wrap it into a shell-script :-(
|
||
|
|
||
|
#!/bin/sh
|
||
|
fsck $@
|
||
|
[ $? -le 1 ] && exit 0
|
||
|
exit 1
|
||
|
|
||
|
Non-zero exit in general
|