Khi tôi sử dụng find
, nó thường tìm thấy nhiều kết quả như
find -name pom.xml
./projectA/pom.xml
./projectB/pom.xml
./projectC/pom.xml
Tôi thường chỉ muốn chọn một kết quả cụ thể, (ví dụ edit ./projectB/pom.xml
). Có cách nào để liệt kê find
đầu ra và chọn một tệp để chuyển sang ứng dụng khác không? giống:
find <print line nums?> -name pom.xml
1 ./projectA/pom.xml
2 ./projectB/pom.xml
3 ./projectC/pom.xml
!! | <get 2nd entry> | xargs myEditor
?
[Chỉnh sửa] Tôi đã va vào một số lỗi perculiar với một số giải pháp được đề cập. Vì vậy, tôi muốn giải thích các bước để sao chép:
git clone http://git.eclipse.org/gitroot/platform/eclipse.platform.swt.git
cd eclipse.platform.swt.git
<now try looking for 'pom.xml' and 'feature.xml' files>
[Chỉnh sửa] Giải pháp 1 Cho đến nay, sự kết hợp của 'nl' (đầu ra enumirate), head & tail dường như hoạt động nếu tôi kết hợp chúng thành các hàm và sử dụng $ (!!).
I E:
find -name pom.xml | nl #look for files, enumirate output.
#I then define a function called "nls"
nls () {
head -n $1 | tail -n 1
}
# I then type: (suppose I want to select item #2)
<my command> $(!!s 2)
# I press enter, it expands like: (suppose my command is vim)
vim $(find -name pom.xml |nls 2)
# bang, file #2 opens in vim and Bob's your uncle.
[Chỉnh sửa] Giải pháp 2 Sử dụng "chọn" dường như cũng hoạt động khá tốt. Ví dụ:
findexec () {
# Usage: findexec <cmd> <name/pattern>
# ex: findexec vim pom.xml
IFS=$'\n';
select file in $(find -type f -name "$2"); do
#$EDITOR "$file"
"$1" "$file"
break
done;
unset IFS
}
Your find command | head -TheNumberYouWant
đáp ứng yêu cầu của bạn? (Với dòng của bạn!! | head -2 | xargs myEditor
:)