[状況]
lsから特定のファイル名パターンだけ取得しようとしたが失敗
$aws s3 ls *2016*
こういうのはエラーになる。
[対策]
CLIを使ってるのだからgrepすれば良い
$aws s3 ls | grep '2016'
以上解決
Go to list of users who liked
More than 5 years have passed since last update.
[状況]
lsから特定のファイル名パターンだけ取得しようとしたが失敗
$aws s3 ls *2016*
こういうのはエラーになる。
[対策]
CLIを使ってるのだからgrepすれば良い
$aws s3 ls | grep '2016'
以上解決
Register as a new user and use Qiita more conveniently
Go to list of users who liked