
# Just list all of the ps with claude

___x_cmd_claude_ps(){
    [ $# -gt 0 ]    ||      set -- --help

    while [ $# -gt 0 ]; do
        case "$1" in
            -h|--help)      ___x_cmd help -m claude ps "$@" ; return 0 ;;
          # --dir)          ___x_cmd_claude_ps "$@" ;;
          # list according to the dir, session
            --)             shift ;     break ;;
            *)              break ;;
        esac
    done

    # x ps --filter with claude

}

