Commonly used Find command examples under Linux: 33 cases
In the current directory, find all files named linuxprobe.txt
# find . -name linuxprobe.txt ./linuxprobe.txt2. Find files in the home directory
Find all files named linuxprobe.txt in the home directory
# find /home -name linuxprobe.txt /home/linuxprobe.txt3. Find files ignoring the case of file names
Search for a file named linuxprobe.txt in a specific directory, ignoring the case of the file name
# find /home -iname linuxprobe.txt ./linuxprobe.txt ./Linuxprobe.txt4. Find a specific directory
Look for a directory named linuxprobe in the root directory
# find / -type d -name linuxprobe /linuxprobe5. Find the php file in the specified directory
Find the file named linuxprobe.php in the current directory
# find . -type f -name linuxprobe.php ./linuxprobe.php6. Find all PHP files in the specified directory
# find . -type f -name "*.php" ./linuxprobe.php ./login.php ./index.php7. Find files with permission 777
Find all files with permission 777 in the current directory
# find . -type f -perm 0777 -print8. Find files with permissions other than 777
Find all files in the root directory with permissions other than 777
# find / -type f ! -perm 7779.查找权限为664的文件
# find / -perm 264410.查找到文件大小为100M的文件并删除
# find / -size +100M -exec rm -rf {} \;11.找到SUID文件
# find / -perm /u=s # find / -perm /g=s12.查找文件类型为mp3格式并且大小为100M的文件,然后删除
# find / -type f -name *.mp3 -size +10M -exec rm {} \; #常用find操作,通过find出指定目录下的特定类型特定名称的文件,然后进行修改,移动,删除等操作。13.找到只读文件
# find / -perm /u=r14.找到可执行文件
# find / -perm /a=x15.找到权限为777的文件并改为644
# find / -type f -perm 0777 -print -exec chmod 644 {} \;16.找到权限为777的目录并改为755
# find / -type d -perm 777 -print -exec chmod 755 {} \;17.找到指定的文件并删除
# find . -type f -name "linuxprobe.txt" -exec rm -f {} \;18.找到指定类型的文件并删除
# find . -type f -name "*.txt" -exec rm -f {} \; OR # find . -type f -name "*.mp3" -exec rm -f {} \;19.查找空文件
# find /tmp -type f -empty20.查找空目录
# find /tmp -type d -empty21.查找所有的隐藏文件
# find /tmp -type f -name ".*"22.查找指定用户家目录下的指定文件
# find / -user root -name linuxprobe.txt23.查找指定用户家目录下的所有文件
# find /home -user linuxprobe24.查找指定组中的所有文件
# find /home -group developer25.查找指定用户家目录下的指定文件并忽略大小写
# find /home -user linuxprobe -iname "*.txt"26.查找最近50天修改过的文件
# find / -mtime 5027.查找最近50天被访问过的文件
# find / -atime 5028.查找最近50天到100天之间修改过的文件
# find / -mtime +50 –mtime -10029.查找过去一小时内修改过的文件
# find / -cmin -6030.查找过去一小时内修改过的文件
# find / -mmin -6031.查找过去一小时内被访问过的文件
# find / -amin -6032.查找大小为50M的文件
# find / -size 50M33.查找文件大小在50M-100M之间的文件
# find / -size +50M -size -100M
本文原创地址:https://www.linuxprobe.com/linux-33-find.html作者:王毅,审核员:逄增宝
本文原创地址:https://www.linuxprobe.com/linux-33-find.html编辑:王毅,审核员:暂无
为您推荐一些与本文相关的文章:
- swappiness的基本默认设置为60,加上生效这样便完成修改设置
- 你不需要 Kubernetes?
- 今天聊聊:每个 Linux 新手都应该知道的 四个命令
- 《Windows核心编程第五版中文版》pdf版电子书免费下载
- 物联网安全:可用性 or 数据
- 谷歌将举办Pixel 3手机发布会
- GNOME 正在(某种程度上)恢复在几年前删除的功能
- 红帽Linux 6.8发布:支持更大XFS文件系统
- 甲骨文推出全新 Java SE 定价模式
- AI时代如何保护隐私?靠区块链还是靠法律
The above is the detailed content of Commonly used Find command examples under Linux: 33 cases. For more information, please follow other related articles on the PHP Chinese website!

The main differences between Linux and Windows in virtualization support are: 1) Linux provides KVM and Xen, with outstanding performance and flexibility, suitable for high customization environments; 2) Windows supports virtualization through Hyper-V, with a friendly interface, and is closely integrated with the Microsoft ecosystem, suitable for enterprises that rely on Microsoft software.

The main tasks of Linux system administrators include system monitoring and performance tuning, user management, software package management, security management and backup, troubleshooting and resolution, performance optimization and best practices. 1. Use top, htop and other tools to monitor system performance and tune it. 2. Manage user accounts and permissions through useradd commands and other commands. 3. Use apt and yum to manage software packages to ensure system updates and security. 4. Configure a firewall, monitor logs, and perform data backup to ensure system security. 5. Troubleshoot and resolve through log analysis and tool use. 6. Optimize kernel parameters and application configuration, and follow best practices to improve system performance and stability.

Learning Linux is not difficult. 1.Linux is an open source operating system based on Unix and is widely used in servers, embedded systems and personal computers. 2. Understanding file system and permission management is the key. The file system is hierarchical, and permissions include reading, writing and execution. 3. Package management systems such as apt and dnf make software management convenient. 4. Process management is implemented through ps and top commands. 5. Start learning from basic commands such as mkdir, cd, touch and nano, and then try advanced usage such as shell scripts and text processing. 6. Common errors such as permission problems can be solved through sudo and chmod. 7. Performance optimization suggestions include using htop to monitor resources, cleaning unnecessary files, and using sy

The average annual salary of Linux administrators is $75,000 to $95,000 in the United States and €40,000 to €60,000 in Europe. To increase salary, you can: 1. Continuously learn new technologies, such as cloud computing and container technology; 2. Accumulate project experience and establish Portfolio; 3. Establish a professional network and expand your network.

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

The Internet does not rely on a single operating system, but Linux plays an important role in it. Linux is widely used in servers and network devices and is popular for its stability, security and scalability.

The core of the Linux operating system is its command line interface, which can perform various operations through the command line. 1. File and directory operations use ls, cd, mkdir, rm and other commands to manage files and directories. 2. User and permission management ensures system security and resource allocation through useradd, passwd, chmod and other commands. 3. Process management uses ps, kill and other commands to monitor and control system processes. 4. Network operations include ping, ifconfig, ssh and other commands to configure and manage network connections. 5. System monitoring and maintenance use commands such as top, df, du to understand the system's operating status and resource usage.

Introduction Linux is a powerful operating system favored by developers, system administrators, and power users due to its flexibility and efficiency. However, frequently using long and complex commands can be tedious and er


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Mac version
God-level code editing software (SublimeText3)

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver CS6
Visual web development tools