Home > php教程 > php手册 > body text

ECS Linux服务器查找配置文件

WBOY
Release: 2016-06-07 11:36:29
Original
1121 people have browsed it

如果需要在ECS Linux系统中寻找文件,可以学习一下。
如果需要在ECS Linux系统中寻找文件(例如安装php之后找不到php.ini文件,或者到了陌生的系统之后需要查找配置文件),可以使用命令:
find / -name "php.ini"
双引号里的文件名可以换成任意需要查找的文件,支持通配符。另附find命令的格式介绍:
find [-H] [-L] [-P] [-D debugopts] [-Olevel] [path...] [expression]
简单一点可以理解为 find [目录] [寻找条件] [操作]。常见的应用案例:
1. find / -atime 7 -type f -print
找出根目录下最近7天被访问过的所有文件
2.find /alidata/www/ -type d -perm 777 -print
找出/alidata/www/录下权限为777的目录
3.find . -type f -user root -exec chown www {} \;
找出当前目录下属主为root的文件,替换属主为www,注意} \之间有空格
4.find / -type f -size +50M | xargs ls -lh
找出根目录下大于50M的文件,并按照human-readable的方式列出
5.find . ! -name "*.txt" -print
查找当前目录下所有非txt文本
find命令支持逻辑运算符和通配符,同时参数也比较多。Linux下查看命令的帮助信息,可以使用man。通过以下命令,可以查询find命令的其它相关参数。
[root@iZ285ma471jZ-s3 test]# man find

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template