diff --git a/README.md b/README.md index cfcdffb..346853f 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ - 需要传入存储路径的指令,如果未填写,默认`tsc`当前工作目录。 - `任务文件`格式统一为`UTF-8`编码。 - 支持相对路径处理。 -- `UpTask`和`DownTask`指令`任务文件`格式完全一致,均为左文件,右目录,尽管是下载别人文件。 +- `UpTask`和`DownTask`指令`任务文件`格式完全一致,均为左文件,右目录,尽管是下载别人文件,目的是为了支持同一个任务文件既可以发也可以收。 具体`任务文件`内容格式如下(左侧发送端,右侧接受端),内容支持变量: diff --git a/client/client.cpp b/client/client.cpp index d040971..317ac1e 100644 --- a/client/client.cpp +++ b/client/client.cpp @@ -83,7 +83,7 @@ void CClient::print_help(bool detail) TLOGW("#Ls#"); TLOGI(" des: List one client's all files and folders."); TLOGI(" cmd: Ls ls"); - TLOGI(" arg: @id @dir"); + TLOGI(" arg: @id @remotedir"); TLOGI("{}", sp); TLOGW("#Sub#"); TLOGI(" des: Submit local file's list on the server."); @@ -111,12 +111,12 @@ void CClient::print_help(bool detail) TLOGI(" arg: @id @files(Sep by | if multi) @savedir(opt)"); TLOGI("{}", sp); TLOGW("#UpTask#"); - TLOGI(" des: Down one client's files directly."); + TLOGI(" des: Upload local files to one client by taskfile."); TLOGI(" cmd: UpTask uptask ut"); TLOGI(" arg: @id @taskfile(UTF-8)"); TLOGI("{}", sp); TLOGW("#DownTask#"); - TLOGI(" des: Down one client's files directly."); + TLOGI(" des: Down one client's files by taskfile."); TLOGI(" cmd: DownTask downtask dt"); TLOGI(" arg: @id @taskfile(UTF-8)"); TLOGI("{}", sp); diff --git a/img/tsc_use.png b/img/tsc_use.png index f417833..8fbe6a9 100644 Binary files a/img/tsc_use.png and b/img/tsc_use.png differ