linux報錯find: paths must precede expression解決辦法

來源:互聯網
上載者:User


  今天在伺服器上執行find ./ -mtime +30 -type f -name *.php的時候,報下面的錯誤:

find: paths must precede expression

Usage: find [-H] [-L] [-P] [path...] [expression]
然後就上網查了一下,結果搜尋到一篇,大概是這樣說的:多檔案的尋找的時候需要增加單引號,一直是使用的雙引號,沒想到找多檔案的時候居然要單引號.好吧,又學了一招,修改後:

find ./ -mtime +30 -type f -name '*.php'

這樣執行後就沒有再報錯了,一個小問題得到解決.

例子說明:

# 進入tmp目錄建立4個文字檔
# cd /tmp
# touch {1,2,3,4}.txt
# find . -name *.txt
find: paths must precede expression: 2.txt

出現這個提示是因為星號被展開為目前的目錄下所有的檔案,這樣的匹配當然會出錯。看這個就知道了:

# echo *
1.txt 2.txt 3.txt 4.txt
# echo '*'
*
# echo \*
*

想要星號不被展開就需要加上括弧或者反斜線轉義,知道了這些我們就知道該怎麼find了

# find . -name '*.txt'
find . -name '*.txt'
./4.txt
./2.txt
./3.txt
./1.txt

#或者使用反斜線

 find . -name \*.txt
./4.txt
./2.txt
./3.txt
./1.txt

好了,就這樣吧.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.