Skip to content

Releases: wilriker/gdc

Initial Release

08 Mar 20:27
Compare
Choose a tag to compare
Initial Release Pre-release
Pre-release

This release contains the basic commands

  • (upload|put) [--verbose|-v] [--recursive|-r] [--skip-existing|-s] [--delete|-d] <sources> <destination>
  • (download|get) [--verbose|-v] [--recursive|-r] [--skip-existing|-s] [--delete|-d] <sources> <destination>
  • (list|ls) [--verbose|-v] [--recursive|-r] [--human-readable|-h] [path_to_list]
  • (move|mv) [--verbose|-v] <source> <destination>
  • (copy|cp) [--verbose|-v] <source> <destination>
  • mkdir [--verbose|-v] <dirs_to_make>
  • (delete|rm) [--verbose|-v] <paths_to_delete>
  • info

and they should work as expected.

IMPORTANT NOTE: The order of the arguments needs to be the following

gdc [OPTION_FLAGS] <command> [COMMAND_PARAMETERS]

this might change in the future to better accommodate to the above listed command structure where the [OPTION_FLAGS] follow the <command>.

TODO

  • share command
  • Performance improvements
  • Tests