Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| #!/bin/sh | |
| # | |
| # Copyright (C) 2001 Ken'ichi Fukamachi <fukachan@fml.org> | |
| # | |
| # All rights reserved. This program is free software; you can | |
| # redistribute it and/or modify it under the same terms as NetBSD itself. | |
| # | |
| # $FML: grep.sh,v 1.2 2001/09/29 08:15:42 fukachan Exp $ | |
| # | |
| pat=$1 | |
| shift | |
| sed -n "/$pat/p" $* |