Last edited 11 years ago
by Anonymous user

Public:Linux Commands

No categories assignedEdit



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