S3cmd output sort

How can I sort the output

s3cmd ls s3://xxx.yyy.zzz/kkk/ 

depending on the date?

(This is not a duplicate. How to sort the output of "s3cmd ls" )

Many thanks

+6
source share
1 answer

just line output for sorting

 s3cmd ls s3://xxx.yyy.zzz/kkk/ | sort 
+10
source

Source: https://habr.com/ru/post/907694/


All Articles