最近作成されたファイルについて教えてくれるツールはありますか?
階層的なファイルシステムを使用するまだ一般的な方法では、ファイルを別の場所に保存することが困難であるため、コンテンツは通常のトピックフォルダに分類され、時にはディレクトリなどのコンテンツに直接関連する場所にソートされます。ツール。
私が尋ねることができるツールは次のとおりです。
作成/保管期間
ファイル形式/名前/拡張子
除外/含めるディレクトリのブラック/ホワイトリスト
ベストアンサー1
これらのタスクをサポートするコマンドラインツールは次のとおりですfind
。
はい
find /path -iname '*.ext' # search for extension (don't forget the quotes)
find /path -mtime n # search for last modified `n*24h` ago
find /path -atime n # search for last accessed `n*24h` ago
find /path -newer ref # newer than ref
find /path -size +100M # larger than 100MB
find /path -perm 664 # example to search for files with a specific permission
find /path -type <t> # search for file `f`, directory `d`, symbolic link `l` ...
ファイル形式の詳細については、以下を実行することをお勧めします。
find /path -type f -exec file '{}' \; | grep 'Vorbis audio'
find
.