Support Questions

Find answers, ask questions, and share your expertise

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. 🙂


Cy Jervis, Manager, Community Program
Was your question answered? Make sure to mark the answer as the accepted solution.
If you find a reply useful, say thanks by clicking on the thumbs up button.