Find Files and Directories Based on Size in Linux

find command linux

Find Files and Directories Based on Size in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. To find all 50MB files, use. # find / … Read more

Find Files and Directories Based on Modification Time in Linux

find command linux

Find Files and Directories Based on Modification Time in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. Find Last 50 Days Modified Files … Read more

Search Files Based On Owners and Groups in Linux

find command linux

Search Files Based On Owners and Groups in Linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. To find all or single file called testdata.txt under / root … Read more

Find Files by Modification Time in linux

find command linux

Find Files by Modification Time in linux In Unix-like and some other operating systems, find is a command-line utility that searches one or more directory trees of a file system, locates files based on some user-specified criteria and applies a user-specified action on each matched file. The find command contains the ability to filter a directory hierarchy … Read more

CSS Selectors – manipulate HTML element : Chapter 3

html-css-website

CSS Selectors CSS selectors allow you to select and manipulate HTML element(s). CSS selectors are used to “find” (or select) HTML elements based on their id, classes, types, attributes, values of attributes and much more. 1. The element Selector The element selector selects elements based on the element name.You can select all <p> elements on … Read more