User Tools

Site Tools


linux:filesystem:find

This is an old revision of the document!


Dateien suchen

Älter als n Tage und alle auflisten

find . -type f -mtime +5 -exec ls -l {} ';'    # älter als 5 Tage

Älter als n Tage und alle löschen

find . -type f -mtime +5 -exec rm -f {} ';'    # älter als 5 Tage

Deteien nach Größe auflisten

find . -ls | sort -n -k7
linux/filesystem/find.1707741831.txt.gz · Last modified: 2024/02/12 13:43 by ms

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki