默认linux下没有tree命令
-bash: tree: command not found
目前文件太大,下载到VPS上,需要有目录列表:
apt install tree

显示隐藏文件:
tree -a

列出每个子目录和文件的完整路径内容:
tree -f

只打印子目录不显示里面的文件:
tree -d

使用-o选项将tree的输出内容发送或重定向到文件名,以便稍后进行分析:
tree -f -o res.txt

默认linux下没有tree命令
-bash: tree: command not found
目前文件太大,下载到VPS上,需要有目录列表:
apt install tree

显示隐藏文件:
tree -a

列出每个子目录和文件的完整路径内容:
tree -f

只打印子目录不显示里面的文件:
tree -d

使用-o选项将tree的输出内容发送或重定向到文件名,以便稍后进行分析:
tree -f -o res.txt


