简体   繁体   中英

.txt file shows contents of directory and sub-directories and all of their files and directory permissions

Im trying to learn linux but Im stuck on one task.

Create single file called outputa.txt which shows information:

contents of directory and sub-directories and all of their files and directory permissions

I upload my directory structure在此处输入图像描述

With tree :

tree -p > outputa.txt

Example:

$ tree -p > outputa.txt
$ cat outputa.txt
.
├── [drwxr-xr-x]  directorya
│   └── [drwxr-xr-x]  directoryb
│       └── [-rw-r--r--]  file1.txt
└── [-rw-r--r--]  outputa.txt

2 directories, 2 files

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM