40 practical examples of Linux Find command
This article will share with you 40 practical examples of the most commonly used find command....
Sort files or folders by size with ls command in linux/unix
The Linux ls -S option can be sorted by size from largest to smallest, or the ls -rS option can be sorted by size from...
How to find file by name in linux/unix
To find files by name, we can use the linux find command. For example: find directory -type f -name "filename"...
Sort files or folders by date/time with ls command in linux/unix
In linux/unix ls -t option can be sorted by date from newest to oldest, or ls -rt option can be sorted by date from oldest...
How does grep exclude directory, file, keyword in Linux/unix
Grep command supports multiple exclusion methods, including grep exclude directory, grep exclude file, grep exclude binary files, and grep exclude keywords....
How to grep ignore case in linux/unix
In linux/unix, we can use the grep -i option to ignore case matching search keywords. grep ignore case syntax: grep -i "keyword" file...
Linux log view using linux command line
Linux log view using linux command line, tail -f: added log content for real-time monitoring, cat: view all log content, more: view log content by...
How to find and replace specified string with sed in linux/unix
find and replace content in linux: Use the grep command and sed command to search and replace, Use the find command and sed command to...
How to change permissions folder and all its subfolders and files in linux
Changing the permissions of a folder and its subfolders and files is often used in Linux operations.For example: To change all the directories and files...
How to print tree directory structure in linux/unix
Print tree directory structure in linux. Print the tree directory structure using the tree command;
Print multilevel tree directory structure using the find and awk combined...
How to find and delete old linux files or directories
linux delete old files script,linux delete old files by date,linux delete old files cron, scheduled task delete files older than,find and delete files older than...
How to grep folder name in linux
How to grep folder name in Linux? Example: Use the find and grep commands grep folder name, Use the ls and grep commands grep...
How to search all files with specific text on Linux?
How to search all files with specific content in Linux system? Use the grep to search for specific content, Use the find and grep to...
Linux Location and File Finding Command
linux locate Syntax Explain Linux locate command is used to find eligible documents or directories in the database. When locate is first executed, it establishes...
linux find command tutorial: find syntax and examples
linux find – search for files in a directory hierarchy. syntax examples use find command – find file find – type filter explanation where x...