Find

在 Linux 中為 find 命令創建別名

  • July 27, 2021

我在我的.bashrc文件中創建了以下別名:

alias find='find . -type f -name'

這避免了. -type f -name我每次進行文件搜尋時都需要輸入。但是,我仍然必須用“”括起來搜尋字元串。我如何將這些包含在別名中,以便不必鍵入:

find '*string*'

我可以打字,

find string

使用別名並不容易,但您可以改為定義一個 shell 函式。

find() { /usr/bin/find . -type f -name "*$1*"; }

引用自:https://unix.stackexchange.com/questions/660188