폴더에있는 모든 파일을 찾을 수는 있지만 꽤 많습니다.
find . -type f | wc -l #find number of files in DIR
ls -lrt #list all files order by date
하루에 파일 수를 찾는 방법은 무엇입니까?
따라서 결과는 다음과 같아야합니다.
# left number is number of files and right is one day.
109294 2016-06-27
101555 2016-06-26
88123 2016-06-25
... etc.
Sry, 하루에 파일 수입니다.
—
tasmaniski
109294
와109294