/ Published in: Bash
-l grep options shows the path and only the path of the matching file
Expand |
Embed | Plain Text
for i in `grep -rl "PATTERN" $DIR`; do rm -f $i; done;
You need to login to post a comment.
therobot on 11/19/07
1 person have marked this snippet as a favorite
-l grep options shows the path and only the path of the matching file
for i in `grep -rl "PATTERN" $DIR`; do rm -f $i; done;
You need to login to post a comment.