Thursday, November 21, 2024

Linux xem cấu trúc cây thư mục bằng lệnh tree

-

Bạn cần list các file hoặc thư mục dạng tree ở trong cli thì hiện tại nó không được tích hợp sẵn trong hệ điều hành mà bạn phải cài thêm một ứng dụng có tên là tree. Sau đây mình xin giới thiệu cho các bạn ứng dụng này nhé.

1. Cài đặt.

Với Centos

yum install tree

Với CentOS/RHEL 8.x và Fedora hãy dùng command dưới

dnf install tree

Với người dùng Ubuntu

sudo apt-get install tree

Với người dùng Macos

brew install tree

Với người dùng OpenSUSE hoặc SUSE Linux

sudo zypper in tree

2. Cách sử dụng.

tree <thư mục>

Ví dụ

root@terraform:~/terraform# tree /root/terraform
/root/terraform
├── common
│   ├── authorized_keys
│   ├── id_rsa
│   ├── kickstart.yaml
│   └── metadata.yaml
├── main.tf
├── script
│   └── sshconfig.sh
├── terraform.tfvars
├── variables.tf
└── vsphere_data.tf

2 directories, 9 files

Ngoài ra các bạn có thể sử dụng nhiều option khác, với mình thì mình sẽ sử dụng thêm 1 option với tham số -d với tác dụng in ra cây thư mục.

root@terraform:~/terraform# tree /root/terraform -d
/root/terraform
├── common
└── script

Chúc các bạn thành công.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

4,956FansLike
256FollowersFollow
223SubscribersSubscribe
spot_img

Related Stories