]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/blobdiff - cli/surfer.js
Send username/password in body and fix cli
[perso/Immae/Projets/Nodejs/Surfer.git] / cli / surfer.js
index ad37917d3eb74793c3be1016a63e6aece89cdf30..4c096d3bb18ab200a66de198f2fb8b4b2fa954c1 100755 (executable)
@@ -15,16 +15,18 @@ program.command('login <url>')
     .action(actions.login);
 
 program.command('put <file> [files...]')
-    .option('-d --destination <folder>', 'Destination folder. This is prepended to the relative <file> path')
-    .description('Put a file')
+    .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]')
-    .description('Get a file or directory')
+    .description('Get a file or directory listing')
     .action(actions.get);
 
-program.command('del')
-    .description('Delete a file')
+program.command('del <file>')
+    .option('-r --recursive', 'Recursive delete directories.', false)
+    .option('-d --dry-run', 'Only list files to delete.', false)
+    .description('Delete a file or directory')
     .action(actions.del);
 
 program.parse(process.argv);