Upload and Download files from S3.
Add this line to your application's Gemfile:
gem 'jaxx'
And then execute:
$ bundle
Or install it yourself as:
$ gem install jaxx
jaxx-upload -h
jaxx [options]
-b, --bucket [BUCKET]
-k, --access-key [ACCESS_KEY]
-s [ACCESS_SECRET],
--access-secret
-f, --file [FILE]
-p, --privacy [PRIVACY]
-r, --retries [retries]
-h, --help
jaxx-download -h
jaxx [options]
-b, --bucket [BUCKET]
-k, --access-key [ACCESS_KEY]
-s [ACCESS_SECRET],
--access-secret
-f, --file [FILE]
-p, --privacy [PRIVACY]
-r, --retries [retries]
-h, --help
jaxx-aboutme -h
jaxx-aboutme [options]
-d, --display
-h, --help
jaxx-upload -b test-bucket -f vapour.txt -k MY_KEY -s MY_SECRET
jaxx-upload -b test-bucket -f dir/ -k MY_KEY -s MY_SECRET
jaxx-download -b test-bucket -f vapour.txt -k MY_KEY -s MY_SECRET
jaxx-upload -b test-bucket -f vapour.txt
jaxx-download -b test-bucket -f vapour.txt
jaxx-upload -b test-bucket -f vapour.txt -k MY_KEY -s MY_SECRET -p public
jaxx-upload -b test-bucket -f dir/ -k MY_KEY -s MY_SECRET -p public
jaxx-download -b test-bucket -f vapour.txt -r 5
jaxx-aboutme -d
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request