使用grep
命令。
如果你想知道用户名
是否在/etc/httpd/conf/httpd.conf中
,你可以运行
grep -i user /etc/httpd/conf/httpd.conf
( -i
使搜索不区分大小写)。
通常, grep
不会告诉你找到该词的行号。 如果要查找行号,请运行
grep -n -i user /etc/httpd/conf/httpd.conf
使用grep
命令。
如果你想知道用户名
是否在/etc/httpd/conf/httpd.conf中
,你可以运行
grep -i user /etc/httpd/conf/httpd.conf
( -i
使搜索不区分大小写)。
通常, grep
不会告诉你找到该词的行号。 如果要查找行号,请运行
grep -n -i user /etc/httpd/conf/httpd.conf