3
하위 디렉토리에서 파일을 찾고 단일 명령으로 파일 이름으로 정렬하는 방법은 무엇입니까?
다음을 사용하여 일반 찾기 결과 find . ! -path "./build*" -name "*.txt": ./tool/001-sub.txt ./tool/000-main.txt ./zo/001-int.txt ./zo/id/002-and.txt ./as/002-mod.txt 그리고 다음과 sort -n같이 정렬하면 : ./as/002-mod.txt ./tool/000-main.txt ./tool/001-sub.txt ./zo/001-int.txt ./zo/id/002-and.txt 그러나 원하는 출력은 다음과 같습니다. ./tool/000-main.txt ./zo/001-int.txt ./tool/001-sub.txt ./zo/id/002-and.txt ./as/002-mod.txt 즉 , 파일 이름 만 기준으로 출력이 정렬 되지만 폴더 정보는 출력의 …