Linux ls – Show Only File Name, Date, and Size with ls

command linefileslinuxls

How can I use ls in linux to get a listing of filenames date and size only. I don't need to see the other info such as owner or permission. Is this possible?

Best Answer

Why not use stat instead of ls?

stat -c "%y %s %n" *
Related Question