]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blobdiff - cli/surfer.js
Fix help text
[perso/Immae/Projets/Nodejs/Surfer.git] / cli / surfer.js
index 366d3c54075eb99fde97786962b863e2058d2b6e..65773e30dad6b7d6ac09fe8b87b3de0d170d9d9f 100755 (executable)
@@ -17,12 +17,12 @@ program.command('logout')
     .description('Logout from server')
     .action(actions.logout);
 
-program.command('put <file> [files...]')
+program.command('put <file|dir> [files...]')
     .option('-a --all', 'Also include hidden files and folders.', false)
     .description('Put a file, last argument is destination if provided')
     .action(actions.put);
 
-program.command('get [file]')
+program.command('get [file|dir]')
     .description('Get a file or directory listing')
     .action(actions.get);