s3cmd

Install

yum search s3cmd # It should be in EPEL yum -y install s3cmd

Otherwise:

rpm_file="s3cmd-1.0.0-4.1.x86_64.rpm" # Start [here](http://s3tools.org/download); check for latest package [here](http://s3tools.org/repo/RHEL_6/x86_64/). tmp_dir="/root/tmp/s3cmd" ; mkdir -p $tmp_dir && cd $tmp_dir && wget http://s3tools.org/repo/RHEL_6/x86_64/"$rpm_file" rpm -i "$rpm_file"

Configure

s3cmd --configure You will be asked for the two keys (ID and secret)

Get info

s3cmd info s3://example

Put data

s3cmd put <file> <bucket>

Get data s3cmd get <bucket>/<file>

More commands: http://s3tools.org/s3cmd .

[Edit]