odps-console-public/src/main/java/com/aliyun/openservices/odps/console/pub/ShowPartitionsCommand.java [60:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void printUsage(PrintStream stream, ExecutionContext ctx) {
    // legacy usage: list|ls partitions [-p,-project <project name>] <table name> [(<spec>)]
    if (ctx.isProjectMode()) {
      stream.println("Usage: show partitions [<project name>.]<table name>"
                     + " [partition(<spec>)]");
    } else {
      stream.println("Usage: show partitions [[<project name>.]<schema name>.]<table name>"
                     + " [partition(<spec>)]");
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



odps-console-public/src/main/java/com/aliyun/openservices/odps/console/pub/ReadTableCommand.java [59:67]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void printUsage(PrintStream stream, ExecutionContext ctx) {
    if (ctx.isProjectMode()) {
      stream.println("Usage: read [<project_name>.]<table_name> [(<col_name>[,..])]"
                     + " [PARTITION (<partition_spec>)] [line_num]");
    } else {
      stream.println("Usage: read [[<project_name>.]<schema_name>.]<table_name>"
                     + " [(<col_name>[,..])] [PARTITION (<partition_spec>)] [line_num]");
    }
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



