diff options
author | 2024-05-02 17:12:34 +0800 | |
---|---|---|
committer | 2024-05-18 23:15:43 +0200 | |
commit | db0e0221e0e445b832e3b4069ea8985c68410f8e (patch) | |
tree | f5f7dd3df5a87b15e62ffcceaf59c756348e5039 /tools | |
parent | 3d2ef976694bf60c754e4127c8f4eb1251fc5bff (diff) | |
download | libimobiledevice-db0e0221e0e445b832e3b4069ea8985c68410f8e.tar.gz libimobiledevice-db0e0221e0e445b832e3b4069ea8985c68410f8e.tar.bz2 |
tools/afcclient: Update get/put options in help message
Signed-off-by: tomriddly <tomriddly@qq.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/afcclient.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/afcclient.c b/tools/afcclient.c index 1cd6858..ba93060 100644 --- a/tools/afcclient.c +++ b/tools/afcclient.c | |||
@@ -193,8 +193,8 @@ static void handle_help(afc_client_t afc, int argc, char** argv) | |||
193 | printf("ln [-s] FILE [LINK] - create a (symbolic) link to file named LINKNAME\n"); | 193 | printf("ln [-s] FILE [LINK] - create a (symbolic) link to file named LINKNAME\n"); |
194 | printf(" NOTE: This feature has been disabled in newer versions of iOS.\n"); | 194 | printf(" NOTE: This feature has been disabled in newer versions of iOS.\n"); |
195 | printf("rm PATH - remove item at PATH\n"); | 195 | printf("rm PATH - remove item at PATH\n"); |
196 | printf("get PATH [LOCALPATH] - transfer file at PATH from device to LOCALPATH\n"); | 196 | printf("get [-rf] PATH [LOCALPATH] - transfer file at PATH from device to LOCALPATH\n"); |
197 | printf("put LOCALPATH [PATH] - transfer local file at LOCALPATH to device at PATH\n"); | 197 | printf("put [-rf] LOCALPATH [PATH] - transfer local file at LOCALPATH to device at PATH\n"); |
198 | printf("\n"); | 198 | printf("\n"); |
199 | } | 199 | } |
200 | 200 | ||