#!/bin/bash
# KFM: dummy command
if [[ $# -ge 1 ]]; then
	[[ $1 == "--help" || $1 == "--version" ]] && echo KFM dummy command && exit 0
fi
if [ -f /etc/kfm_debug ]; then
    {
        echo "$(date '+%Y-%m-%d %H:%M:%S') $(basename "$0") $@" 
    } >> /var/log/kfm_debug.log
fi
# exit status
# 0 success
# 1 fatal error, unkown options, write failure
# 4 I/O error
# 101..n value-100=number of warnings detected
exit 1
