bug#6251: How only show time of files with ls?

2010-05-22 Thread Peng Yu
ls -go gives me permission and file sizes. But I only want to show time and file names. Would you please let me know what command to use? -- Regards, Peng

bug#6251: How only show time of files with ls?

2010-05-22 Thread Pádraig Brady
On 22/05/10 23:22, Peng Yu wrote: ls -go gives me permission and file sizes. But I only want to show time and file names. Would you please let me know what command to use? You could use cut to show the required columns: ls -go | tr -s '[:blank:]' ' ' | cut -d' ' -f4- Note if we supported

bug#6251: How only show time of files with ls?

2010-05-22 Thread Bob Proulx
Peng Yu wrote: ls -go gives me permission and file sizes. But I only want to show time and file names. Would you please let me know what command to use? Please don't ask the same question on many different mailing lists. Note that I replied to your message in bug-bash with the following: