Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

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(); }