・ルート配下のhttpd.confのファイルを探す
find / -name "httpd.conf"
・ルート配下の拡張子confのファイルを探す
find / -name "*.conf"
find / -iname "*.conf"
grep -lr "PermitRootLogin" /
・ルート配下のconfigで終るファイルで、"PermitRootLogin"の文字列を含む行を表示する
※ファイル名に複数箇所ある場合はその数分表示されます。
find / -type f -name "*config" | xargs grep "PermitRootLogin"
※ファイル名に複数箇所ある場合はその数分表示されます。
find / -type f -name "*config" | xargs grep "PermitRootLogin"