Display the detailed information of a tree structure.

General support questions
Post Reply
nalioui
Posts: 4
Joined: 2022/12/01 16:02:39

Display the detailed information of a tree structure.

Post by nalioui » 2023/02/14 07:04:14

I would like to display information about the data (folders and files) contained in a target tree: More precisely

i. Their size

ii. The date of creation

iii. The date of last consultation

iv. The date of the last registration

I did some tests with the following commands:

> ls -lhrt associated to ""awk".

> du -s /PATH/* | sort -nrk1 | awk '{print $1/1024,$2}'

> stat ==> which does not display the creation date

But how to combine everything to get all the information.

Thanks for your help.

Post Reply