トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS

Top / linux / System Command Examples / find examples / find ファイルやディレクトリの容量が0の物を検索
Last-modified: 2018-02-23 (金) 14:36:54 (1931d)

find ファイルやディレクトリの容量が0の物を検索


  • syntax:
    find 検索Path -empty

    find ./ -empty
    find ./ -empty -exec mv {} ./backup \;


  • comment:
    検索Path以下の0バイトのFile,ディレクトリにヒットします。

  • Example:



    Tag: Linux find

    Goto Top Page

Top / linux / System Command Examples / find examples / find ファイルやディレクトリの容量が0の物を検索