如何使用正则表达式列出s3中的文件(在linux cli模式下)?我有s3桶中的文件,如sales1.txt
,sales2.txt
等。当我运行以下命令时,没有显示任何内容。是否有命令用regex列出s3存储桶中的所有文件?
命令:
aws s3 ls s3://test/sales*txt
预期产出:
sales1.txt
sales2.txt
sales3.txt
答案 0 :(得分:1)
使用以下命令
aws s3 ls s3://test/ | grep '[sales].txt'