#!/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 command was unrecognized
# 2 operation failed
exit 2
