grep과 함께 tree를 사용하고 이름으로 파일을 찾는 방법은 무엇입니까?

grep과 함께 tree를 사용하고 이름으로 파일을 찾는 방법은 무엇입니까?

예를 들어 파일 확장자로 ".csv"를 사용하는 파일을 찾기 위해 tree및 중 하나를 사용 grep하거나 find함께 사용하는 방법은 다음과 같습니다 .csv

├── ./Videos
├── ./vscode
│   ├── ./vscode/foo.csv
│   ├── ./vscode/Hello.java
│   └── ./vscode/helloworld.ps1
└── ./xxxx

5850 directories, 29132 files
nicholas@mordor:~$ 
nicholas@mordor:~$ tree -f | grep *.csv
nicholas@mordor:~$ 

예를 들어 다음도 참조하세요.

https://stackoverflow.com/q/10212192/4531180


특정 파일을 찾고 있습니다:

nicholas@mordor:~$ 
nicholas@mordor:~$ tree -f / | grep 'note.xml'
nicholas@mordor:~$ 

eXide어디에 두어야할지 잘 모르겠습니다.파일:

에셰드

또한 시도했습니다:

nicholas@mordor:~$ 
nicholas@mordor:~$ find /home/nicholas/ -name *note.xml*
nicholas@mordor:~$ 
nicholas@mordor:~$ find -iname "note.xml"
nicholas@mordor:~$ 

그래서 좀 당황스럽습니다.

답변1

대신 사용해 보세요 find.

find . -iname \*.csv

관련 정보