Support Questions

Find answers, ask questions, and share your expertise
Announcements
Now Live: Explore expert insights and technical deep dives on the new Cloudera Community BlogsRead the Announcement

listing hdfs files as per timestamp

avatar
Contributor

How to list hdfs files according to timestamp? just like ls -lt in unix.

1 ACCEPTED SOLUTION

avatar
Contributor

I found the answer myself.  Using below command I can achieve ls -lt output in hdfs.

 

hdfs dfs -ls /test | sort -k6,7

 

View solution in original post

2 REPLIES 2

avatar
Contributor

I found the answer myself.  Using below command I can achieve ls -lt output in hdfs.

 

hdfs dfs -ls /test | sort -k6,7

 

avatar
Community Manager

I'm happy to see you found it. Thanks for sharing. 🙂


Keep the questions coming,

Cy Jervis | Senior Manager, Knowledge Programs

if (helpful) { mark_as_solution(); } | if (appreciated) { give_kudos(); }