web-dev-qa-db-ja.com

サイズ範囲でファイルを検索する

サイズでファイルを見つけなければなりません。サイズはパラメーターです。見つかったファイルの結果はファイルに保存する必要があります。私はすでにこれを持っています:

touch result.txt 
find /var/log -type f -size $1 -size $2 -exec ls {} \; > result.txt 

スクリプトはいくつかの結果を表示しますが、それらが正しいかどうかはわかりませんし、ファイルに保存するものもありません。
誰でもお手伝いできますか?

6
J.Smith

のような使用:

find /var/log -type f -size -10M -size +1M -exec ls {} \; > result.txt

1Mb以上10Mb未満のサイズのファイル名を保存します。

cat result.txt
/var/log/wtmp
/var/log/audit/audit.log.1
/var/log/audit/audit.log
/var/log/anaconda/journal.log
/var/log/mongo/mongod-11.0.0.11.log

入力パラメーターとして渡す場合は、次のように使用します。

find /var/log -type f -size -"$1"M -size +"$2"M -exec ls {} \; > result.txt

以下はサイズの利用可能な単位です。

  -size n[cwbkMG]
          File uses n units of space, rounding up.  The following
          suffixes can be used:

          `b'    for 512-byte blocks (this is the default if no suffix
                 is used)

          `c'    for bytes

          `w'    for two-byte words

          `k'    for Kibibytes (KiB, units of 1024 bytes)

          `M'    for Mebibytes (MiB, units of 1024 * 1024 = 1048576
                 bytes)

          `G'    for Gibibytes (GiB, units of 1024 * 1024 * 1024 =
                 1073741824 bytes)
10
pl_rock

見つけたファイルは、このように(サイズ列を使用して)数値的に並べ替えることができます

find /var/log -ls |sort -nk7

必要に応じて、結果をファイルに保存できます

find /var/log -ls |sort -nk7 > result.txt
2
sudodus