LoginSignup
1
0

More than 5 years have passed since last update.

特定のディレクトリ配下にあるファイルから、指定したキーワードを含むファイルを検索するスクリプト

Last updated at Posted at 2016-06-24
#!/bin/bash

pattern=$1
directory=$2
name=$3

if [ -z "$directory" ] ; then
  directory=.
fi

if [ -z "$name" ] ; then
  name='*'
fi

find "$directory" -type f -name "$name" | xargs grep -nH "$pattern"
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0