aboutsummaryrefslogtreecommitdiffhomepage
path: root/cli/surfer.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/surfer.js')
-rwxr-xr-xcli/surfer.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/surfer.js b/cli/surfer.js
index b311658..278724d 100755
--- a/cli/surfer.js
+++ b/cli/surfer.js
@@ -20,11 +20,11 @@ program.command('put <file> [files...]')
20 .action(actions.put); 20 .action(actions.put);
21 21
22program.command('get [file]') 22program.command('get [file]')
23 .description('Get a file or directory') 23 .description('Get a file or directory listing')
24 .action(actions.get); 24 .action(actions.get);
25 25
26program.command('del') 26program.command('del <file>')
27 .description('Delete a file') 27 .description('Delete a file or directory')
28 .action(actions.del); 28 .action(actions.del);
29 29
30program.parse(process.argv); 30program.parse(process.argv);