diff options
Diffstat (limited to 'cli/surfer.js')
-rwxr-xr-x | cli/surfer.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/surfer.js b/cli/surfer.js index 366d3c5..65773e3 100755 --- a/cli/surfer.js +++ b/cli/surfer.js | |||
@@ -17,12 +17,12 @@ program.command('logout') | |||
17 | .description('Logout from server') | 17 | .description('Logout from server') |
18 | .action(actions.logout); | 18 | .action(actions.logout); |
19 | 19 | ||
20 | program.command('put <file> [files...]') | 20 | program.command('put <file|dir> [files...]') |
21 | .option('-a --all', 'Also include hidden files and folders.', false) | 21 | .option('-a --all', 'Also include hidden files and folders.', false) |
22 | .description('Put a file, last argument is destination if provided') | 22 | .description('Put a file, last argument is destination if provided') |
23 | .action(actions.put); | 23 | .action(actions.put); |
24 | 24 | ||
25 | program.command('get [file]') | 25 | program.command('get [file|dir]') |
26 | .description('Get a file or directory listing') | 26 | .description('Get a file or directory listing') |
27 | .action(actions.get); | 27 | .action(actions.get); |
28 | 28 | ||