Package: psmisc Version: 22.13-1 Normally fuser -s has the same exit status as fuser:
$ fuser /etc $ echo $? 1 $ fuser -s /etc $ echo $? 1 but for a mount point, it does not: $ fuser /sys $ echo $? 1 $ fuser -s /sys $ echo $? 0 This means that ‘fuser -s’ is not useful for checking whether a mount point is in use. Anders -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

