Debian

使用 dpkg -L 列出包的文件時,有沒有辦法列出文件的數量?

  • January 25, 2017

cat -n用來獲取文件中內容的行列表.txt

[$] cat exam.txt                                                                                                                    
    1  let's see how far does this go, and if it works or not. if not till where it 
    2  goes and what happens after that. In nano, things are much more better than in X 
    3  text editors as there is no set fill therein as there is in nano and hence are 
    4  much worse off. 

在 dpkg 中似乎沒有這樣做,或者有嗎?我正在 Debian 測試和執行 dpkg 1.18.18 。只是為了讓列表不那麼麻煩,我使用 head -

[$] dpkg -L nano | head

/.
/bin
/bin/nano
/etc
/etc/nanorc
/usr
/usr/share
/usr/share/doc
/usr/share/doc/nano
/usr/share/doc/nano/AUTHORS

因為我使用 head 我知道這些是 10 行或 10 個文件,考慮到 . 作為一個文件。我確實嘗試過類似的東西 -

$ dpkg -nL nano 

但是得到了它不知道該選項的錯誤。

如果不可能,請告訴我,以便我可以將其作為功能請求送出到dpkg.

dpkg -L nano | cat -n

訣竅……(雖然它計算目錄和文件。)

如果你只想要總數,

dpkg -L nano | wc -l

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