Skip to content

Instantly share code, notes, and snippets.

@kimikimi714
Created June 7, 2014 14:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimikimi714/0d80ef46b2ca7cbd2cc8 to your computer and use it in GitHub Desktop.
Save kimikimi714/0d80ef46b2ca7cbd2cc8 to your computer and use it in GitHub Desktop.
自分で作ったスクリプトまとめ ref: http://qiita.com/kimikimi714/items/ed3dfb698a6ae6269c00
#!/bin/sh
filename=$1
word=$2
cat ${filename} | while read line
do
grep -l ${word} ${line};
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment