LoginSignup
1
0

More than 5 years have passed since last update.

AWS s3 CLIでlsはワイルドカードを使えない

Last updated at Posted at 2017-08-02

[状況]
lsから特定のファイル名パターンだけ取得しようとしたが失敗
$aws s3 ls *2016*
こういうのはエラーになる。

[対策]
CLIを使ってるのだからgrepすれば良い
$aws s3 ls | grep '2016'

以上解決

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0