To club to commands with columns


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers To club to commands with columns
# 1  
Old 03-27-2007
To club to commands with columns

Hi,

I've a requirement to display all the attributes of the directory which may contain directory also along with the files and additionally i need to display the versions of the files present in the directory along with the column of "ls -ltr" which will be in next column(Version)

Plz give me the commands and hope you experts can solve this.

I need this badly asap...

bye
# 2  
Old 03-27-2007
Do you want a file tree? It's not clear, maybe an example output would help.
# 3  
Old 03-30-2007
The following is the answer based on my understanding of you post.

ls -alRrt
-a #All Hidden files
-R #Recurse directories
-l #long listing
-t #Based on modification time
-r #reverses the order

Please let us know if this doesnot solve your problem.

Thanks,
Nagarajan Ganesan
 
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sed/awk command to convert number occurances into date format and club a set of lines

Hi, I have been stuck in this requirement where my file contains the below format. 20150812170500846959990854-25383-8.0.0 "ABC Report" hp96880 "4952" 20150812170501846959990854-25383-8.0.0 End of run 20150812060132846959990854-20495-8.0.0 "XYZ Report" vg76452 "1006962188"... (6 Replies)
Discussion started by: Chinmaya Kabi
6 Replies

2. Post Here to Contact Site Administrators and Moderators

Bits Club link on main page

Hi, I noticed that the Bit Club is no longer accessible from the main page. It used to be in the Members Only Forum (I think, can't really remember.) Was this intentional? Regards, Ni2 (3 Replies)
Discussion started by: ni2
3 Replies

3. Ubuntu

How to get columns TIME and TTY of commands ps -A?

Hi, Commands ps -A include four parameters are PID, TTY, TIME and CMD. I can not found pathnames of TTY and TIME which I can read from file in C language to get information display on screen. Thank you! Ex: PID TTY TIME CMD 1 ? 00:00:01 init (2 Replies)
Discussion started by: newbie_member
2 Replies

4. Shell Programming and Scripting

command to remove multiple commands in particular columns

Hi Experts, I actually need to remove multiple commas within the column not the entire row. Its comma delimited file Actually the value seems to look like 1,006,000, when we open this in notepad or word pad the value look s like “1,006,000” Actually our Sed command removes single comma and... (7 Replies)
Discussion started by: bshivali
7 Replies
Login or Register to Ask a Question