Last edited 2 months ago
by Max Mustermann
No categories assignedEdit
Revision as of 10:53, 9 March 2026 by Max Mustermann (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)



Template:Infobox bms


1 Finding files[edit | edit source]

1.1 Locate files[edit | edit source]

Update the file database
 updateDb 
Find files
 locate <file>

1.2 All files bigger than 10MByte and sorts them according to the size[edit | edit source]

 ls -lahS $(find / -type f -size +10000k)

1.3 Files which are maximum 1 day old[edit | edit source]

 find . -name '*.doc' -type f -mtime -1