AWS CLI basic commands
General commands syntax
This section is designed to explain the most important concepts and notations used in the set of high-level 's3' commands.
Supported high-level commands
cp- copy
mv- move
ls - list buckets
rm - remove an object
mb - make a bucket
rb - remove a bucket
sync - sync directories with new and updated files
Add the --recursive flag for multiple objects operations
Use of Exclude and Include Filters
Most commands have --exclude "<value>" and --include "<value>" parameters that can achieve the desired result. These parameters perform pattern matching to either ex- or include a particular file or object. The following pattern symbols are supported:
*: Matches everything
?: Matches any single character
[sequence]: Matches any character in sequence
[!sequence]: Matches any character not in sequence
Last updated
Was this helpful?