본문 바로가기
AWS

[aws] S3 ls 명령에서 와일드카드 사용 대체하기

by hs_seo 2019. 4. 9.

AWS S3 ls 명령은 유닉스 스타일의 와일드카드(*, 아스테릭) 사용이 안됩니다. 따라서 include나 exclude 옵션을 이용하여 문제를 해결해야 합니다. 

 

https://docs.aws.amazon.com/cli/latest/reference/s3/

 

s3 — AWS CLI 1.16.140 Command Reference

This section explains prominent concepts and notations in the set of high-level S3 commands provided. Order of Path Arguments Every command takes one or two positional path arguments. The first path argument represents the source, which is the local file/d

docs.aws.amazon.com

다음과 같이 aws 커맨드가 제공하는 옵션이나 grep 명령을 이용해야 합니다. 

aws s3 ls s3://bucket_name/dir --exclude "*" --include "*.txt"
aws s3 ls s3://bucket_name/dir | grep txt

버켓내의 여러 디렉토리에서 이 명령을 이용해야 하는 경우에는 다음과 같이 스크립트를 이용하여 해결할 수 있습니다. 

 

반응형