$ find -name "*.php" | xargs grep '検索したい単語'
.bashrcにエイリアス貼るのもいいかも
.bashrc
alias pgrep='find -name "*.php" | xargs grep'
$ pgrep '検索したい単語'
Go to list of users who liked
More than 5 years have passed since last update.
$ find -name "*.php" | xargs grep '検索したい単語'
.bashrcにエイリアス貼るのもいいかも
alias pgrep='find -name "*.php" | xargs grep'
$ pgrep '検索したい単語'
Register as a new user and use Qiita more conveniently
Go to list of users who liked