Linux

[Linux] ls 로 정렬하기

쟈누이 2022. 1. 28. 09:31
반응형

 

 

1. 사용법


ls : 디렉터리 안의 항목을 리스트

-t : 마지막 업데이트 시각을 기준으로 정렬

-u  : 마지막 액세스 시각을 기준으로 정렬

-U : 플래그로 생성일 기준 정렬

-r  : 역순 정렬

 

     -t      Sort by time modified (most recently modified first) before sorting the operands by lexicographi-
             cal order.

     -u      Use time of last access, instead of last modification of the file for sorting (-t) or long print-
             ing (-l).

     -U      Use time of file creation, instead of last modification for sorting (-t) or long output (-l).

 

 

ls -t -r

 

 

 

2. 참고 링크


https://stackoverflow.com/questions/36668997/how-to-reverse-and-sort-files-in-linux/36669101#36669101

 

How to reverse and sort files in Linux?

I'm trying to take files in a directory and reverse them and then sort them alphabetically. So that Cat Dog So the output Would be God Tac

stackoverflow.com

 

반응형