summaryrefslogtreecommitdiff
path: root/nocompile/bin/grepurl
blob: 50dc51630dccd599f44611d0aede30f8d2199c0f (plain) (blame)
1
2
3
4
#!/bin/sh
while read URL;do
 printf "%s" "$URL" | cuturl "$1" | grep "$2" >/dev/null && echo $URL
done