We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The goat blob export command downloads all blobs of an account into a folder.
goat blob export
The goat blob upload command only accepts one file.
goat blob upload
It should accept multiple file arguments, which could be filled by shell glob.
Or it should accept a path to a folder, because there may be too many blobs to put into arguments.
This would be useful for manual PDS migrations.
The text was updated successfully, but these errors were encountered:
You could use parallel to call goat once for every file in a folder, at least for now.
parallel
goat
Sorry, something went wrong.
I've been using this on windows
Get-ChildItem | ForEach-Object { goat blob upload $_ & }
but it's really inefficient, makes windows defender use all the cpu, each goat makes a request to refreshSession
No branches or pull requests
The
goat blob export
command downloads all blobs of an account into a folder.The
goat blob upload
command only accepts one file.It should accept multiple file arguments, which could be filled by shell glob.
Or it should accept a path to a folder, because there may be too many blobs to put into arguments.
This would be useful for manual PDS migrations.
The text was updated successfully, but these errors were encountered: