findで特定の文字列を含むファイルの一括検索。
command
# find ./ -name "*.php" -exec grep -H "Referer Check Failed" {} \;
ここでは「Referer Check Failed」という文字列を含むPHPファイルを探しています。
Go to list of users who liked
More than 5 years have passed since last update.
findで特定の文字列を含むファイルの一括検索。
# find ./ -name "*.php" -exec grep -H "Referer Check Failed" {} \;
ここでは「Referer Check Failed」という文字列を含むPHPファイルを探しています。
Register as a new user and use Qiita more conveniently
Go to list of users who liked