
# Deprecated. Use 'x first_ file' instead.
___x_cmd_whichfile_(){
    while [ "$#" -gt 0 ]; do
        [ ! -f "$1" ] || {
            ___X_CMD_WHICHFILE_=$1
            return 0
        }
        shift
    done
    return 1
}
