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