├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── featute_report.md ├── pull_request_template.md └── workflows │ ├── release.yaml │ └── ut-check.yml ├── .gitignore ├── CHANGELOG.md ├── License ├── Makefile ├── OWNERS ├── README.md ├── cmd ├── ali.go ├── asyncfetch.go ├── autocompletion.go ├── aws.go ├── bucket.go ├── cdn.go ├── download.go ├── fop.go ├── m3u8.go ├── match.go ├── root.go ├── rs.go ├── rsbatch.go ├── servers.go ├── share.go ├── tools.go ├── upload.go ├── user.go └── version.go ├── cmd_test ├── aa_pre_test.go ├── ali_test.go ├── async_fetch_test.go ├── aws_test.go ├── bucket_domain_test.go ├── bucket_list_test.go ├── bucket_mk_test.go ├── bucket_test.go ├── cdn_prefetch_test.go ├── cdn_refresh_test.go ├── change_minetype_test.go ├── change_type_test.go ├── copy_test.go ├── delete_test.go ├── download_get_test.go ├── download_test.go ├── fetch_test.go ├── fop_test.go ├── forbidden_test.go ├── lifecycle_change_test.go ├── match_test.go ├── move_test.go ├── qshell_test.go ├── rename_test.go ├── restore_archive_test.go ├── servers_test.go ├── sign_test.go ├── status_test.go ├── test │ ├── config.go │ ├── document.go │ ├── file.go │ ├── flow.go │ ├── lineWriter.go │ └── test.go ├── tools_test.go ├── upload_form_test.go ├── upload_resume_test.go ├── upload_sync_test.go ├── upload_test.go ├── user.go ├── user_cmd_execute.go └── version_test.go ├── codecov.yml ├── docs ├── .DS_Store ├── abfetch.go ├── abfetch.md ├── account.go ├── account.md ├── acheck.go ├── acheck.md ├── alilistbucket.go ├── alilistbucket.md ├── awsfetch.go ├── awsfetch.md ├── awslist.go ├── awslist.md ├── b64decode.go ├── b64decode.md ├── b64encode.go ├── b64encode.md ├── batchchgm.go ├── batchchgm.md ├── batchchlifecycle.go ├── batchchlifecycle.md ├── batchchtype.go ├── batchchtype.md ├── batchcopy.go ├── batchcopy.md ├── batchdelete.go ├── batchdelete.md ├── batchexpire.go ├── batchexpire.md ├── batchfetch.go ├── batchfetch.md ├── batchforbidden.go ├── batchforbidden.md ├── batchmatch.go ├── batchmatch.md ├── batchmove.go ├── batchmove.md ├── batchrename.go ├── batchrename.md ├── batchrestorear.go ├── batchrestorear.md ├── batchsign.go ├── batchsign.md ├── batchstat.go ├── batchstat.md ├── bucket.go ├── bucket.md ├── buckets.go ├── buckets.md ├── cdnprefetch.go ├── cdnprefetch.md ├── cdnrefresh.go ├── cdnrefresh.md ├── chgm.go ├── chgm.md ├── chlifecycle.go ├── chlifecycle.md ├── chtype.go ├── chtype.md ├── copy.go ├── copy.md ├── create-share.go ├── create-share.md ├── d2ts.go ├── d2ts.md ├── delete.go ├── delete.md ├── dircache.go ├── dircache.md ├── document.go ├── domains.go ├── domains.md ├── expire.go ├── expire.md ├── fetch.go ├── fetch.md ├── forbidden.go ├── forbidden.md ├── fput.go ├── fput.md ├── func.go ├── func.md ├── get.go ├── get.md ├── ip.go ├── ip.md ├── listbucket.go ├── listbucket.md ├── listbucket2.go ├── listbucket2.md ├── m3u8delete.go ├── m3u8delete.md ├── m3u8replace.go ├── m3u8replace.md ├── match.go ├── match.md ├── mirrorupdate.go ├── mirrorupdate.md ├── mkbucket.go ├── mkbucket.md ├── move.go ├── move.md ├── pfop.go ├── pfop.md ├── prefetch.go ├── prefetch.md ├── prefop.go ├── prefop.md ├── privateurl.go ├── privateurl.md ├── qdownload.go ├── qdownload.md ├── qdownload2.go ├── qdownload2.md ├── qetag.go ├── qetag.md ├── qshell.go ├── qupload.go ├── qupload.md ├── qupload2.go ├── qupload2.md ├── rename.go ├── rename.md ├── reqid.go ├── reqid.md ├── restorear.go ├── restorear.md ├── rpcdecode.go ├── rpcdecode.md ├── rpcencode.go ├── rpcencode.md ├── rput.go ├── rput.md ├── saveas.go ├── saveas.md ├── share-cp.go ├── share-cp.md ├── share-ls.go ├── share-ls.md ├── stat.go ├── stat.md ├── sync.go ├── sync.md ├── tms2d.go ├── tms2d.md ├── tns2d.go ├── tns2d.md ├── token.go ├── token.md ├── ts2d.go ├── ts2d.md ├── unzip.go ├── unzip.md ├── urldecode.go ├── urldecode.md ├── urlencode.go ├── urlencode.md ├── user.go ├── user.md ├── version.go └── version.md ├── go.mod ├── go.sum ├── iqshell ├── ali │ └── list_bucket.go ├── aws │ ├── fetch.go │ └── list_bucket.go ├── cdn │ ├── cdn.go │ └── operations │ │ ├── prefetch.go │ │ ├── qps.go │ │ └── refresh.go ├── common │ ├── .DS_Store │ ├── account │ │ ├── account.go │ │ ├── actions.go │ │ ├── crypt.go │ │ ├── load.go │ │ └── operations │ │ │ ├── add.go │ │ │ ├── delete.go │ │ │ ├── query.go │ │ │ └── update.go │ ├── alert │ │ └── alert.go │ ├── client │ │ └── client.go │ ├── config │ │ ├── config.go │ │ ├── config_global.go │ │ ├── config_local.go │ │ ├── config_user.go │ │ ├── hosts.go │ │ ├── load.go │ │ ├── log.go │ │ ├── operation.go │ │ ├── retry.go │ │ ├── tasks.go │ │ └── viper.go │ ├── data │ │ ├── base.go │ │ ├── checker.go │ │ ├── data_test.go │ │ ├── define.go │ │ ├── env.go │ │ ├── error.go │ │ ├── global_var.go │ │ └── std.go │ ├── db │ │ └── db.go │ ├── export │ │ ├── export.go │ │ └── file.go │ ├── file │ │ ├── rotate_file.go │ │ └── rotate_file_test.go │ ├── flow │ │ ├── builder.go │ │ ├── code_verification.go │ │ ├── event_listener.go │ │ ├── flow.go │ │ ├── overseer.go │ │ ├── overseer_local_db.go │ │ ├── redo.go │ │ ├── result.go │ │ ├── skip.go │ │ ├── work.go │ │ ├── work_creator.go │ │ ├── work_creator_items.go │ │ ├── work_creator_json.go │ │ ├── work_limit.go │ │ ├── work_provider.go │ │ ├── work_provider_array.go │ │ ├── work_provider_chan.go │ │ ├── work_provider_file.go │ │ ├── work_provider_reader.go │ │ ├── worker.go │ │ └── worker_provider.go │ ├── host │ │ ├── host.go │ │ └── provider.go │ ├── limit │ │ ├── block.go │ │ └── limit.go │ ├── locker │ │ └── locker.go │ ├── log │ │ ├── console.go │ │ ├── data.go │ │ ├── load.go │ │ └── log.go │ ├── progress │ │ ├── printer.go │ │ └── progress.go │ ├── provider │ │ ├── data.go │ │ └── provider.go │ ├── recorder │ │ ├── db.go │ │ └── recorder.go │ ├── scanner │ │ └── scanner.go │ ├── synchronized │ │ └── sync.go │ ├── utils │ │ ├── cmd.go │ │ ├── cmd_test.go │ │ ├── commits.go │ │ ├── commits_test.go │ │ ├── crypto.go │ │ ├── dir_cache.go │ │ ├── empty.go │ │ ├── error.go │ │ ├── etag.go │ │ ├── file.go │ │ ├── ip.go │ │ ├── ip │ │ │ ├── group.go │ │ │ ├── parser.go │ │ │ └── parser_ali.go │ │ ├── ip_test.go │ │ ├── math.go2 │ │ ├── operations │ │ │ ├── base64.go │ │ │ ├── dir_cache.go │ │ │ ├── etag.go │ │ │ ├── func.go │ │ │ ├── ip.go │ │ │ ├── reqid.go │ │ │ ├── rpc.go │ │ │ ├── timestamp.go │ │ │ ├── token.go │ │ │ ├── url.go │ │ │ └── zip.go │ │ ├── os.go │ │ ├── path.go │ │ ├── strings.go │ │ ├── template.go │ │ ├── unzip.go │ │ ├── user_agent.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── version │ │ ├── operations │ │ │ └── version.go │ │ └── version.go │ └── workspace │ │ ├── config.go │ │ ├── interrupt.go │ │ ├── load.go │ │ ├── path.go │ │ └── workspace.go ├── load.go └── storage │ ├── .DS_Store │ ├── bucket │ ├── bucket.go │ ├── create.go │ ├── domain.go │ ├── internal │ │ └── list │ │ │ ├── list.go │ │ │ ├── list_v1.go │ │ │ └── list_v2.go │ ├── list.go │ ├── list_cache.go │ ├── list_line.go │ ├── operations │ │ ├── bucket.go │ │ ├── create.go │ │ ├── domain_list.go │ │ └── list.go │ ├── region.go │ └── storage_v2.go │ ├── object │ ├── .DS_Store │ ├── batch │ │ ├── batch.go │ │ ├── data.go │ │ ├── metric.go │ │ ├── one.go │ │ └── some.go │ ├── copy.go │ ├── delete.go │ ├── download │ │ ├── downloader.go │ │ ├── downloader_file.go │ │ ├── file_info.go │ │ ├── operations │ │ │ ├── batch.go │ │ │ ├── batch_data.go │ │ │ ├── download.go │ │ │ ├── download_host.go │ │ │ ├── metric.go │ │ │ ├── utils.go │ │ │ └── work_provider.go │ │ ├── slice_downloader.go │ │ └── url.go │ ├── exist.go │ ├── fetch.go │ ├── fop.go │ ├── lifecycle.go │ ├── m3u8 │ │ ├── delete.go │ │ ├── m3u8_test.go │ │ ├── operations │ │ │ ├── delete.go │ │ │ └── replace.go │ │ ├── replace.go │ │ └── slices.go │ ├── match.go │ ├── mime_change.go │ ├── move.go │ ├── operations │ │ ├── copy.go │ │ ├── delete.go │ │ ├── fetch.go │ │ ├── fetch_async.go │ │ ├── fop.go │ │ ├── lifecycle.go │ │ ├── match.go │ │ ├── mime_change.go │ │ ├── move.go │ │ ├── prefetch.go │ │ ├── private_url.go │ │ ├── rename.go │ │ ├── restore_archive.go │ │ ├── save_as.go │ │ ├── share.go │ │ ├── status.go │ │ ├── status_change.go │ │ └── type_change.go │ ├── restore_archive.go │ ├── save_as.go │ ├── status.go │ ├── type_change.go │ └── upload │ │ ├── api │ │ ├── recorder.go │ │ ├── resume.go │ │ ├── resume_v1.go │ │ └── resume_v2.go │ │ ├── conveyor.go │ │ ├── operations │ │ ├── batch.go │ │ ├── batch_data.go │ │ ├── config_mould.go │ │ ├── metric.go │ │ ├── sync.go │ │ ├── upload.go │ │ └── utils.go │ │ ├── uploader.go │ │ ├── uploader_form.go │ │ ├── uploader_resume_v1.go │ │ └── uploader_resume_v2.go │ ├── prefetch.go │ └── servers │ ├── all_buckets.go │ └── operations │ └── bucket_list.go ├── main └── main.go └── readme.go /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/featute_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/.github/ISSUE_TEMPLATE/featute_report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/ut-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/.github/workflows/ut-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/License -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/Makefile -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/OWNERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/README.md -------------------------------------------------------------------------------- /cmd/ali.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/ali.go -------------------------------------------------------------------------------- /cmd/asyncfetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/asyncfetch.go -------------------------------------------------------------------------------- /cmd/autocompletion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/autocompletion.go -------------------------------------------------------------------------------- /cmd/aws.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/aws.go -------------------------------------------------------------------------------- /cmd/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/bucket.go -------------------------------------------------------------------------------- /cmd/cdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/cdn.go -------------------------------------------------------------------------------- /cmd/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/download.go -------------------------------------------------------------------------------- /cmd/fop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/fop.go -------------------------------------------------------------------------------- /cmd/m3u8.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/m3u8.go -------------------------------------------------------------------------------- /cmd/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/match.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/rs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/rs.go -------------------------------------------------------------------------------- /cmd/rsbatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/rsbatch.go -------------------------------------------------------------------------------- /cmd/servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/servers.go -------------------------------------------------------------------------------- /cmd/share.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/share.go -------------------------------------------------------------------------------- /cmd/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/tools.go -------------------------------------------------------------------------------- /cmd/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/upload.go -------------------------------------------------------------------------------- /cmd/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/user.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd_test/aa_pre_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/aa_pre_test.go -------------------------------------------------------------------------------- /cmd_test/ali_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/ali_test.go -------------------------------------------------------------------------------- /cmd_test/async_fetch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/async_fetch_test.go -------------------------------------------------------------------------------- /cmd_test/aws_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/aws_test.go -------------------------------------------------------------------------------- /cmd_test/bucket_domain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/bucket_domain_test.go -------------------------------------------------------------------------------- /cmd_test/bucket_list_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/bucket_list_test.go -------------------------------------------------------------------------------- /cmd_test/bucket_mk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/bucket_mk_test.go -------------------------------------------------------------------------------- /cmd_test/bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/bucket_test.go -------------------------------------------------------------------------------- /cmd_test/cdn_prefetch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/cdn_prefetch_test.go -------------------------------------------------------------------------------- /cmd_test/cdn_refresh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/cdn_refresh_test.go -------------------------------------------------------------------------------- /cmd_test/change_minetype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/change_minetype_test.go -------------------------------------------------------------------------------- /cmd_test/change_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/change_type_test.go -------------------------------------------------------------------------------- /cmd_test/copy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/copy_test.go -------------------------------------------------------------------------------- /cmd_test/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/delete_test.go -------------------------------------------------------------------------------- /cmd_test/download_get_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/download_get_test.go -------------------------------------------------------------------------------- /cmd_test/download_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/download_test.go -------------------------------------------------------------------------------- /cmd_test/fetch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/fetch_test.go -------------------------------------------------------------------------------- /cmd_test/fop_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/fop_test.go -------------------------------------------------------------------------------- /cmd_test/forbidden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/forbidden_test.go -------------------------------------------------------------------------------- /cmd_test/lifecycle_change_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/lifecycle_change_test.go -------------------------------------------------------------------------------- /cmd_test/match_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/match_test.go -------------------------------------------------------------------------------- /cmd_test/move_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/move_test.go -------------------------------------------------------------------------------- /cmd_test/qshell_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/qshell_test.go -------------------------------------------------------------------------------- /cmd_test/rename_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/rename_test.go -------------------------------------------------------------------------------- /cmd_test/restore_archive_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/restore_archive_test.go -------------------------------------------------------------------------------- /cmd_test/servers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/servers_test.go -------------------------------------------------------------------------------- /cmd_test/sign_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/sign_test.go -------------------------------------------------------------------------------- /cmd_test/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/status_test.go -------------------------------------------------------------------------------- /cmd_test/test/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/test/config.go -------------------------------------------------------------------------------- /cmd_test/test/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/test/document.go -------------------------------------------------------------------------------- /cmd_test/test/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/test/file.go -------------------------------------------------------------------------------- /cmd_test/test/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/test/flow.go -------------------------------------------------------------------------------- /cmd_test/test/lineWriter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/test/lineWriter.go -------------------------------------------------------------------------------- /cmd_test/test/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/test/test.go -------------------------------------------------------------------------------- /cmd_test/tools_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/tools_test.go -------------------------------------------------------------------------------- /cmd_test/upload_form_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/upload_form_test.go -------------------------------------------------------------------------------- /cmd_test/upload_resume_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/upload_resume_test.go -------------------------------------------------------------------------------- /cmd_test/upload_sync_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/upload_sync_test.go -------------------------------------------------------------------------------- /cmd_test/upload_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/upload_test.go -------------------------------------------------------------------------------- /cmd_test/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/user.go -------------------------------------------------------------------------------- /cmd_test/user_cmd_execute.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/user_cmd_execute.go -------------------------------------------------------------------------------- /cmd_test/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/cmd_test/version_test.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/.DS_Store -------------------------------------------------------------------------------- /docs/abfetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/abfetch.go -------------------------------------------------------------------------------- /docs/abfetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/abfetch.md -------------------------------------------------------------------------------- /docs/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/account.go -------------------------------------------------------------------------------- /docs/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/account.md -------------------------------------------------------------------------------- /docs/acheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/acheck.go -------------------------------------------------------------------------------- /docs/acheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/acheck.md -------------------------------------------------------------------------------- /docs/alilistbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/alilistbucket.go -------------------------------------------------------------------------------- /docs/alilistbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/alilistbucket.md -------------------------------------------------------------------------------- /docs/awsfetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/awsfetch.go -------------------------------------------------------------------------------- /docs/awsfetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/awsfetch.md -------------------------------------------------------------------------------- /docs/awslist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/awslist.go -------------------------------------------------------------------------------- /docs/awslist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/awslist.md -------------------------------------------------------------------------------- /docs/b64decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/b64decode.go -------------------------------------------------------------------------------- /docs/b64decode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/b64decode.md -------------------------------------------------------------------------------- /docs/b64encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/b64encode.go -------------------------------------------------------------------------------- /docs/b64encode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/b64encode.md -------------------------------------------------------------------------------- /docs/batchchgm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchchgm.go -------------------------------------------------------------------------------- /docs/batchchgm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchchgm.md -------------------------------------------------------------------------------- /docs/batchchlifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchchlifecycle.go -------------------------------------------------------------------------------- /docs/batchchlifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchchlifecycle.md -------------------------------------------------------------------------------- /docs/batchchtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchchtype.go -------------------------------------------------------------------------------- /docs/batchchtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchchtype.md -------------------------------------------------------------------------------- /docs/batchcopy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchcopy.go -------------------------------------------------------------------------------- /docs/batchcopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchcopy.md -------------------------------------------------------------------------------- /docs/batchdelete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchdelete.go -------------------------------------------------------------------------------- /docs/batchdelete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchdelete.md -------------------------------------------------------------------------------- /docs/batchexpire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchexpire.go -------------------------------------------------------------------------------- /docs/batchexpire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchexpire.md -------------------------------------------------------------------------------- /docs/batchfetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchfetch.go -------------------------------------------------------------------------------- /docs/batchfetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchfetch.md -------------------------------------------------------------------------------- /docs/batchforbidden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchforbidden.go -------------------------------------------------------------------------------- /docs/batchforbidden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchforbidden.md -------------------------------------------------------------------------------- /docs/batchmatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchmatch.go -------------------------------------------------------------------------------- /docs/batchmatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchmatch.md -------------------------------------------------------------------------------- /docs/batchmove.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchmove.go -------------------------------------------------------------------------------- /docs/batchmove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchmove.md -------------------------------------------------------------------------------- /docs/batchrename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchrename.go -------------------------------------------------------------------------------- /docs/batchrename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchrename.md -------------------------------------------------------------------------------- /docs/batchrestorear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchrestorear.go -------------------------------------------------------------------------------- /docs/batchrestorear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchrestorear.md -------------------------------------------------------------------------------- /docs/batchsign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchsign.go -------------------------------------------------------------------------------- /docs/batchsign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchsign.md -------------------------------------------------------------------------------- /docs/batchstat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchstat.go -------------------------------------------------------------------------------- /docs/batchstat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/batchstat.md -------------------------------------------------------------------------------- /docs/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/bucket.go -------------------------------------------------------------------------------- /docs/bucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/bucket.md -------------------------------------------------------------------------------- /docs/buckets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/buckets.go -------------------------------------------------------------------------------- /docs/buckets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/buckets.md -------------------------------------------------------------------------------- /docs/cdnprefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/cdnprefetch.go -------------------------------------------------------------------------------- /docs/cdnprefetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/cdnprefetch.md -------------------------------------------------------------------------------- /docs/cdnrefresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/cdnrefresh.go -------------------------------------------------------------------------------- /docs/cdnrefresh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/cdnrefresh.md -------------------------------------------------------------------------------- /docs/chgm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/chgm.go -------------------------------------------------------------------------------- /docs/chgm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/chgm.md -------------------------------------------------------------------------------- /docs/chlifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/chlifecycle.go -------------------------------------------------------------------------------- /docs/chlifecycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/chlifecycle.md -------------------------------------------------------------------------------- /docs/chtype.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/chtype.go -------------------------------------------------------------------------------- /docs/chtype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/chtype.md -------------------------------------------------------------------------------- /docs/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/copy.go -------------------------------------------------------------------------------- /docs/copy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/copy.md -------------------------------------------------------------------------------- /docs/create-share.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/create-share.go -------------------------------------------------------------------------------- /docs/create-share.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/create-share.md -------------------------------------------------------------------------------- /docs/d2ts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/d2ts.go -------------------------------------------------------------------------------- /docs/d2ts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/d2ts.md -------------------------------------------------------------------------------- /docs/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/delete.go -------------------------------------------------------------------------------- /docs/delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/delete.md -------------------------------------------------------------------------------- /docs/dircache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/dircache.go -------------------------------------------------------------------------------- /docs/dircache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/dircache.md -------------------------------------------------------------------------------- /docs/document.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/document.go -------------------------------------------------------------------------------- /docs/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/domains.go -------------------------------------------------------------------------------- /docs/domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/domains.md -------------------------------------------------------------------------------- /docs/expire.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/expire.go -------------------------------------------------------------------------------- /docs/expire.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/expire.md -------------------------------------------------------------------------------- /docs/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/fetch.go -------------------------------------------------------------------------------- /docs/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/fetch.md -------------------------------------------------------------------------------- /docs/forbidden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/forbidden.go -------------------------------------------------------------------------------- /docs/forbidden.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/forbidden.md -------------------------------------------------------------------------------- /docs/fput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/fput.go -------------------------------------------------------------------------------- /docs/fput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/fput.md -------------------------------------------------------------------------------- /docs/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/func.go -------------------------------------------------------------------------------- /docs/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/func.md -------------------------------------------------------------------------------- /docs/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/get.go -------------------------------------------------------------------------------- /docs/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/get.md -------------------------------------------------------------------------------- /docs/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/ip.go -------------------------------------------------------------------------------- /docs/ip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/ip.md -------------------------------------------------------------------------------- /docs/listbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/listbucket.go -------------------------------------------------------------------------------- /docs/listbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/listbucket.md -------------------------------------------------------------------------------- /docs/listbucket2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/listbucket2.go -------------------------------------------------------------------------------- /docs/listbucket2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/listbucket2.md -------------------------------------------------------------------------------- /docs/m3u8delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/m3u8delete.go -------------------------------------------------------------------------------- /docs/m3u8delete.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/m3u8delete.md -------------------------------------------------------------------------------- /docs/m3u8replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/m3u8replace.go -------------------------------------------------------------------------------- /docs/m3u8replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/m3u8replace.md -------------------------------------------------------------------------------- /docs/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/match.go -------------------------------------------------------------------------------- /docs/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/match.md -------------------------------------------------------------------------------- /docs/mirrorupdate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/mirrorupdate.go -------------------------------------------------------------------------------- /docs/mirrorupdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/mirrorupdate.md -------------------------------------------------------------------------------- /docs/mkbucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/mkbucket.go -------------------------------------------------------------------------------- /docs/mkbucket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/mkbucket.md -------------------------------------------------------------------------------- /docs/move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/move.go -------------------------------------------------------------------------------- /docs/move.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/move.md -------------------------------------------------------------------------------- /docs/pfop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/pfop.go -------------------------------------------------------------------------------- /docs/pfop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/pfop.md -------------------------------------------------------------------------------- /docs/prefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/prefetch.go -------------------------------------------------------------------------------- /docs/prefetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/prefetch.md -------------------------------------------------------------------------------- /docs/prefop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/prefop.go -------------------------------------------------------------------------------- /docs/prefop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/prefop.md -------------------------------------------------------------------------------- /docs/privateurl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/privateurl.go -------------------------------------------------------------------------------- /docs/privateurl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/privateurl.md -------------------------------------------------------------------------------- /docs/qdownload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qdownload.go -------------------------------------------------------------------------------- /docs/qdownload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qdownload.md -------------------------------------------------------------------------------- /docs/qdownload2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qdownload2.go -------------------------------------------------------------------------------- /docs/qdownload2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qdownload2.md -------------------------------------------------------------------------------- /docs/qetag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qetag.go -------------------------------------------------------------------------------- /docs/qetag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qetag.md -------------------------------------------------------------------------------- /docs/qshell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qshell.go -------------------------------------------------------------------------------- /docs/qupload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qupload.go -------------------------------------------------------------------------------- /docs/qupload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qupload.md -------------------------------------------------------------------------------- /docs/qupload2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qupload2.go -------------------------------------------------------------------------------- /docs/qupload2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/qupload2.md -------------------------------------------------------------------------------- /docs/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rename.go -------------------------------------------------------------------------------- /docs/rename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rename.md -------------------------------------------------------------------------------- /docs/reqid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/reqid.go -------------------------------------------------------------------------------- /docs/reqid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/reqid.md -------------------------------------------------------------------------------- /docs/restorear.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/restorear.go -------------------------------------------------------------------------------- /docs/restorear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/restorear.md -------------------------------------------------------------------------------- /docs/rpcdecode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rpcdecode.go -------------------------------------------------------------------------------- /docs/rpcdecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rpcdecode.md -------------------------------------------------------------------------------- /docs/rpcencode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rpcencode.go -------------------------------------------------------------------------------- /docs/rpcencode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rpcencode.md -------------------------------------------------------------------------------- /docs/rput.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rput.go -------------------------------------------------------------------------------- /docs/rput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/rput.md -------------------------------------------------------------------------------- /docs/saveas.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/saveas.go -------------------------------------------------------------------------------- /docs/saveas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/saveas.md -------------------------------------------------------------------------------- /docs/share-cp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/share-cp.go -------------------------------------------------------------------------------- /docs/share-cp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/share-cp.md -------------------------------------------------------------------------------- /docs/share-ls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/share-ls.go -------------------------------------------------------------------------------- /docs/share-ls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/share-ls.md -------------------------------------------------------------------------------- /docs/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/stat.go -------------------------------------------------------------------------------- /docs/stat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/stat.md -------------------------------------------------------------------------------- /docs/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/sync.go -------------------------------------------------------------------------------- /docs/sync.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/sync.md -------------------------------------------------------------------------------- /docs/tms2d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/tms2d.go -------------------------------------------------------------------------------- /docs/tms2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/tms2d.md -------------------------------------------------------------------------------- /docs/tns2d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/tns2d.go -------------------------------------------------------------------------------- /docs/tns2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/tns2d.md -------------------------------------------------------------------------------- /docs/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/token.go -------------------------------------------------------------------------------- /docs/token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/token.md -------------------------------------------------------------------------------- /docs/ts2d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/ts2d.go -------------------------------------------------------------------------------- /docs/ts2d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/ts2d.md -------------------------------------------------------------------------------- /docs/unzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/unzip.go -------------------------------------------------------------------------------- /docs/unzip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/unzip.md -------------------------------------------------------------------------------- /docs/urldecode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/urldecode.go -------------------------------------------------------------------------------- /docs/urldecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/urldecode.md -------------------------------------------------------------------------------- /docs/urlencode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/urlencode.go -------------------------------------------------------------------------------- /docs/urlencode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/urlencode.md -------------------------------------------------------------------------------- /docs/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/user.go -------------------------------------------------------------------------------- /docs/user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/user.md -------------------------------------------------------------------------------- /docs/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/version.go -------------------------------------------------------------------------------- /docs/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/docs/version.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/go.sum -------------------------------------------------------------------------------- /iqshell/ali/list_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/ali/list_bucket.go -------------------------------------------------------------------------------- /iqshell/aws/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/aws/fetch.go -------------------------------------------------------------------------------- /iqshell/aws/list_bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/aws/list_bucket.go -------------------------------------------------------------------------------- /iqshell/cdn/cdn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/cdn/cdn.go -------------------------------------------------------------------------------- /iqshell/cdn/operations/prefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/cdn/operations/prefetch.go -------------------------------------------------------------------------------- /iqshell/cdn/operations/qps.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/cdn/operations/qps.go -------------------------------------------------------------------------------- /iqshell/cdn/operations/refresh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/cdn/operations/refresh.go -------------------------------------------------------------------------------- /iqshell/common/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/.DS_Store -------------------------------------------------------------------------------- /iqshell/common/account/account.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/account.go -------------------------------------------------------------------------------- /iqshell/common/account/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/actions.go -------------------------------------------------------------------------------- /iqshell/common/account/crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/crypt.go -------------------------------------------------------------------------------- /iqshell/common/account/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/load.go -------------------------------------------------------------------------------- /iqshell/common/account/operations/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/operations/add.go -------------------------------------------------------------------------------- /iqshell/common/account/operations/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/operations/delete.go -------------------------------------------------------------------------------- /iqshell/common/account/operations/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/operations/query.go -------------------------------------------------------------------------------- /iqshell/common/account/operations/update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/account/operations/update.go -------------------------------------------------------------------------------- /iqshell/common/alert/alert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/alert/alert.go -------------------------------------------------------------------------------- /iqshell/common/client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/client/client.go -------------------------------------------------------------------------------- /iqshell/common/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/config.go -------------------------------------------------------------------------------- /iqshell/common/config/config_global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/config_global.go -------------------------------------------------------------------------------- /iqshell/common/config/config_local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/config_local.go -------------------------------------------------------------------------------- /iqshell/common/config/config_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/config_user.go -------------------------------------------------------------------------------- /iqshell/common/config/hosts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/hosts.go -------------------------------------------------------------------------------- /iqshell/common/config/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/load.go -------------------------------------------------------------------------------- /iqshell/common/config/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/log.go -------------------------------------------------------------------------------- /iqshell/common/config/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/operation.go -------------------------------------------------------------------------------- /iqshell/common/config/retry.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/retry.go -------------------------------------------------------------------------------- /iqshell/common/config/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/tasks.go -------------------------------------------------------------------------------- /iqshell/common/config/viper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/config/viper.go -------------------------------------------------------------------------------- /iqshell/common/data/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/base.go -------------------------------------------------------------------------------- /iqshell/common/data/checker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/checker.go -------------------------------------------------------------------------------- /iqshell/common/data/data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/data_test.go -------------------------------------------------------------------------------- /iqshell/common/data/define.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/define.go -------------------------------------------------------------------------------- /iqshell/common/data/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/env.go -------------------------------------------------------------------------------- /iqshell/common/data/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/error.go -------------------------------------------------------------------------------- /iqshell/common/data/global_var.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/global_var.go -------------------------------------------------------------------------------- /iqshell/common/data/std.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/data/std.go -------------------------------------------------------------------------------- /iqshell/common/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/db/db.go -------------------------------------------------------------------------------- /iqshell/common/export/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/export/export.go -------------------------------------------------------------------------------- /iqshell/common/export/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/export/file.go -------------------------------------------------------------------------------- /iqshell/common/file/rotate_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/file/rotate_file.go -------------------------------------------------------------------------------- /iqshell/common/file/rotate_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/file/rotate_file_test.go -------------------------------------------------------------------------------- /iqshell/common/flow/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/builder.go -------------------------------------------------------------------------------- /iqshell/common/flow/code_verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/code_verification.go -------------------------------------------------------------------------------- /iqshell/common/flow/event_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/event_listener.go -------------------------------------------------------------------------------- /iqshell/common/flow/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/flow.go -------------------------------------------------------------------------------- /iqshell/common/flow/overseer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/overseer.go -------------------------------------------------------------------------------- /iqshell/common/flow/overseer_local_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/overseer_local_db.go -------------------------------------------------------------------------------- /iqshell/common/flow/redo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/redo.go -------------------------------------------------------------------------------- /iqshell/common/flow/result.go: -------------------------------------------------------------------------------- 1 | package flow 2 | 3 | type Result interface { 4 | IsValid() bool 5 | } 6 | -------------------------------------------------------------------------------- /iqshell/common/flow/skip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/skip.go -------------------------------------------------------------------------------- /iqshell/common/flow/work.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_creator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_creator.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_creator_items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_creator_items.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_creator_json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_creator_json.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_limit.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_provider.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_provider_array.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_provider_array.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_provider_chan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_provider_chan.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_provider_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_provider_file.go -------------------------------------------------------------------------------- /iqshell/common/flow/work_provider_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/work_provider_reader.go -------------------------------------------------------------------------------- /iqshell/common/flow/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/worker.go -------------------------------------------------------------------------------- /iqshell/common/flow/worker_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/flow/worker_provider.go -------------------------------------------------------------------------------- /iqshell/common/host/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/host/host.go -------------------------------------------------------------------------------- /iqshell/common/host/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/host/provider.go -------------------------------------------------------------------------------- /iqshell/common/limit/block.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/limit/block.go -------------------------------------------------------------------------------- /iqshell/common/limit/limit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/limit/limit.go -------------------------------------------------------------------------------- /iqshell/common/locker/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/locker/locker.go -------------------------------------------------------------------------------- /iqshell/common/log/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/log/console.go -------------------------------------------------------------------------------- /iqshell/common/log/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/log/data.go -------------------------------------------------------------------------------- /iqshell/common/log/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/log/load.go -------------------------------------------------------------------------------- /iqshell/common/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/log/log.go -------------------------------------------------------------------------------- /iqshell/common/progress/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/progress/printer.go -------------------------------------------------------------------------------- /iqshell/common/progress/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/progress/progress.go -------------------------------------------------------------------------------- /iqshell/common/provider/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/provider/data.go -------------------------------------------------------------------------------- /iqshell/common/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/provider/provider.go -------------------------------------------------------------------------------- /iqshell/common/recorder/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/recorder/db.go -------------------------------------------------------------------------------- /iqshell/common/recorder/recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/recorder/recorder.go -------------------------------------------------------------------------------- /iqshell/common/scanner/scanner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/scanner/scanner.go -------------------------------------------------------------------------------- /iqshell/common/synchronized/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/synchronized/sync.go -------------------------------------------------------------------------------- /iqshell/common/utils/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/cmd.go -------------------------------------------------------------------------------- /iqshell/common/utils/cmd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/cmd_test.go -------------------------------------------------------------------------------- /iqshell/common/utils/commits.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/commits.go -------------------------------------------------------------------------------- /iqshell/common/utils/commits_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/commits_test.go -------------------------------------------------------------------------------- /iqshell/common/utils/crypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/crypto.go -------------------------------------------------------------------------------- /iqshell/common/utils/dir_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/dir_cache.go -------------------------------------------------------------------------------- /iqshell/common/utils/empty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/empty.go -------------------------------------------------------------------------------- /iqshell/common/utils/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/error.go -------------------------------------------------------------------------------- /iqshell/common/utils/etag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/etag.go -------------------------------------------------------------------------------- /iqshell/common/utils/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/file.go -------------------------------------------------------------------------------- /iqshell/common/utils/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/ip.go -------------------------------------------------------------------------------- /iqshell/common/utils/ip/group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/ip/group.go -------------------------------------------------------------------------------- /iqshell/common/utils/ip/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/ip/parser.go -------------------------------------------------------------------------------- /iqshell/common/utils/ip/parser_ali.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/ip/parser_ali.go -------------------------------------------------------------------------------- /iqshell/common/utils/ip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/ip_test.go -------------------------------------------------------------------------------- /iqshell/common/utils/math.go2: -------------------------------------------------------------------------------- 1 | package utils 2 | -------------------------------------------------------------------------------- /iqshell/common/utils/operations/base64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/base64.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/dir_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/dir_cache.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/etag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/etag.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/func.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/func.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/ip.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/reqid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/reqid.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/rpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/rpc.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/timestamp.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/token.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/token.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/url.go -------------------------------------------------------------------------------- /iqshell/common/utils/operations/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/operations/zip.go -------------------------------------------------------------------------------- /iqshell/common/utils/os.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/os.go -------------------------------------------------------------------------------- /iqshell/common/utils/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/path.go -------------------------------------------------------------------------------- /iqshell/common/utils/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/strings.go -------------------------------------------------------------------------------- /iqshell/common/utils/template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/template.go -------------------------------------------------------------------------------- /iqshell/common/utils/unzip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/unzip.go -------------------------------------------------------------------------------- /iqshell/common/utils/user_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/user_agent.go -------------------------------------------------------------------------------- /iqshell/common/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/utils.go -------------------------------------------------------------------------------- /iqshell/common/utils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/utils/utils_test.go -------------------------------------------------------------------------------- /iqshell/common/version/operations/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/version/operations/version.go -------------------------------------------------------------------------------- /iqshell/common/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/version/version.go -------------------------------------------------------------------------------- /iqshell/common/workspace/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/workspace/config.go -------------------------------------------------------------------------------- /iqshell/common/workspace/interrupt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/workspace/interrupt.go -------------------------------------------------------------------------------- /iqshell/common/workspace/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/workspace/load.go -------------------------------------------------------------------------------- /iqshell/common/workspace/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/workspace/path.go -------------------------------------------------------------------------------- /iqshell/common/workspace/workspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/common/workspace/workspace.go -------------------------------------------------------------------------------- /iqshell/load.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/load.go -------------------------------------------------------------------------------- /iqshell/storage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/.DS_Store -------------------------------------------------------------------------------- /iqshell/storage/bucket/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/bucket.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/create.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/domain.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/internal/list/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/internal/list/list.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/internal/list/list_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/internal/list/list_v1.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/internal/list/list_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/internal/list/list_v2.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/list.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/list_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/list_cache.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/list_line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/list_line.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/operations/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/operations/bucket.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/operations/create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/operations/create.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/operations/domain_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/operations/domain_list.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/operations/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/operations/list.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/region.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/region.go -------------------------------------------------------------------------------- /iqshell/storage/bucket/storage_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/bucket/storage_v2.go -------------------------------------------------------------------------------- /iqshell/storage/object/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/.DS_Store -------------------------------------------------------------------------------- /iqshell/storage/object/batch/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/batch/batch.go -------------------------------------------------------------------------------- /iqshell/storage/object/batch/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/batch/data.go -------------------------------------------------------------------------------- /iqshell/storage/object/batch/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/batch/metric.go -------------------------------------------------------------------------------- /iqshell/storage/object/batch/one.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/batch/one.go -------------------------------------------------------------------------------- /iqshell/storage/object/batch/some.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/batch/some.go -------------------------------------------------------------------------------- /iqshell/storage/object/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/copy.go -------------------------------------------------------------------------------- /iqshell/storage/object/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/delete.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/downloader.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/downloader_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/downloader_file.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/file_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/file_info.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/batch.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/batch_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/batch_data.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/download.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/download_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/download_host.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/metric.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/utils.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/operations/work_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/operations/work_provider.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/slice_downloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/slice_downloader.go -------------------------------------------------------------------------------- /iqshell/storage/object/download/url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/download/url.go -------------------------------------------------------------------------------- /iqshell/storage/object/exist.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/exist.go -------------------------------------------------------------------------------- /iqshell/storage/object/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/fetch.go -------------------------------------------------------------------------------- /iqshell/storage/object/fop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/fop.go -------------------------------------------------------------------------------- /iqshell/storage/object/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/lifecycle.go -------------------------------------------------------------------------------- /iqshell/storage/object/m3u8/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/m3u8/delete.go -------------------------------------------------------------------------------- /iqshell/storage/object/m3u8/m3u8_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/m3u8/m3u8_test.go -------------------------------------------------------------------------------- /iqshell/storage/object/m3u8/operations/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/m3u8/operations/delete.go -------------------------------------------------------------------------------- /iqshell/storage/object/m3u8/operations/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/m3u8/operations/replace.go -------------------------------------------------------------------------------- /iqshell/storage/object/m3u8/replace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/m3u8/replace.go -------------------------------------------------------------------------------- /iqshell/storage/object/m3u8/slices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/m3u8/slices.go -------------------------------------------------------------------------------- /iqshell/storage/object/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/match.go -------------------------------------------------------------------------------- /iqshell/storage/object/mime_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/mime_change.go -------------------------------------------------------------------------------- /iqshell/storage/object/move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/move.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/copy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/copy.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/delete.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/fetch.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/fetch_async.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/fetch_async.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/fop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/fop.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/lifecycle.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/match.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/mime_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/mime_change.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/move.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/move.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/prefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/prefetch.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/private_url.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/private_url.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/rename.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/rename.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/restore_archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/restore_archive.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/save_as.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/save_as.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/share.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/share.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/status.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/status_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/status_change.go -------------------------------------------------------------------------------- /iqshell/storage/object/operations/type_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/operations/type_change.go -------------------------------------------------------------------------------- /iqshell/storage/object/restore_archive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/restore_archive.go -------------------------------------------------------------------------------- /iqshell/storage/object/save_as.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/save_as.go -------------------------------------------------------------------------------- /iqshell/storage/object/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/status.go -------------------------------------------------------------------------------- /iqshell/storage/object/type_change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/type_change.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/api/recorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/api/recorder.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/api/resume.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/api/resume.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/api/resume_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/api/resume_v1.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/api/resume_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/api/resume_v2.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/conveyor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/conveyor.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/batch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/batch.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/batch_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/batch_data.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/config_mould.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/config_mould.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/metric.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/metric.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/sync.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/sync.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/upload.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/operations/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/operations/utils.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/uploader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/uploader.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/uploader_form.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/uploader_form.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/uploader_resume_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/uploader_resume_v1.go -------------------------------------------------------------------------------- /iqshell/storage/object/upload/uploader_resume_v2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/object/upload/uploader_resume_v2.go -------------------------------------------------------------------------------- /iqshell/storage/prefetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/prefetch.go -------------------------------------------------------------------------------- /iqshell/storage/servers/all_buckets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/servers/all_buckets.go -------------------------------------------------------------------------------- /iqshell/storage/servers/operations/bucket_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/iqshell/storage/servers/operations/bucket_list.go -------------------------------------------------------------------------------- /main/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/main/main.go -------------------------------------------------------------------------------- /readme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qiniu/qshell/HEAD/readme.go --------------------------------------------------------------------------------