Skip to content

Commit

Permalink
Merge pull request aws#2817 from shigemk2/fix-typo-s3-cp
Browse files Browse the repository at this point in the history
Fix typo in s3 cp example
  • Loading branch information
stealthycoin authored Sep 15, 2017
2 parents 6470680 + 3583309 commit 9d734db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awscli/examples/s3/cp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Output::
**Recursively copying local files to S3**

When passed with the parameter ``--recursive``, the following ``cp`` command recursively copies all files under a
specifed directory to a specified bucket and prefix while excluding some files by using an ``--exclude`` parameter. In
specified directory to a specified bucket and prefix while excluding some files by using an ``--exclude`` parameter. In
this example, the directory ``myDir`` has the files ``test1.txt`` and ``test2.jpg``::

aws s3 cp myDir s3://mybucket/ --recursive --exclude "*.jpg"
Expand All @@ -70,7 +70,7 @@ Output::
**Recursively copying S3 objects to another bucket**

When passed with the parameter ``--recursive``, the following ``cp`` command recursively copies all objects under a
specifed bucket to another bucket while excluding some objects by using an ``--exclude`` parameter. In this example,
specified bucket to another bucket while excluding some objects by using an ``--exclude`` parameter. In this example,
the bucket ``mybucket`` has the objects ``test1.txt`` and ``another/test1.txt``::

aws s3 cp s3://mybucket/ s3://mybucket2/ --recursive --exclude "another/*"
Expand Down

0 comments on commit 9d734db

Please sign in to comment.