Last edited 2 months ago
by Max Mustermann

YM:Linux Commands: Difference between revisions

No categories assignedEdit
hw>Fkb
Text replacement - "<bs:bookshelf src="Book:Book Public" />" to ""
 
m 1 revision imported
 
(No difference)

Latest revision as of 10:53, 9 March 2026



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