Forrest logo
back to context overview

s3cmd

List of commands for s3cmd:

  • s3cmd:tldr:0f249 s3cmd: Create Bucket/Folder.
    $ s3cmd mb s3://${bucket}
    try on your machine
    explain this command
  • s3cmd:tldr:524f4 s3cmd: Invoke configuration/reconfiguration tool.
    $ s3cmd --configure
    try on your machine
    explain this command
  • s3cmd:tldr:5f345 s3cmd: Upload a file to a bucket.
    $ s3cmd put ${local_file} s3://${bucket}/${file}
    try on your machine
    explain this command
  • s3cmd:tldr:89707 s3cmd: Delete a specific object.
    $ s3cmd rm s3://${bucket}/${object}
    try on your machine
    explain this command
  • s3cmd:tldr:caa5c s3cmd: Download a specific file from a bucket.
    $ s3cmd get s3://${bucket_name}/${filename} ${path-to-local_file}
    try on your machine
    explain this command
  • s3cmd:tldr:cd992 s3cmd: List Buckets/Folders/Objects.
    $ s3cmd ls s3://${select}
    try on your machine
    explain this command
  • s3cmd:tldr:e5418 s3cmd: Move an object to a specific bucket location.
    $ s3cmd mv s3://${src_bucket}/${src_object} s3://${dst_bucket}/${dst_object}
    try on your machine
    explain this command
back to context overview