I have a bash script:
#!/bin/sh

while read url; do
 echo $url
 curl -s "$url" | \
 grep -i 'rel="alternate"' | \
 egrep -i '(rss|atom)' | \
 sed -e 's,.*href=",,i' -e 's,".*,,' -e 's,^, ,'
done

that I'd like to use in BBEdit and have the script operate on a list of URLs. What do I need to change to make it work?

Thanks!
--
Lorin Rivers
Mosasaur: Killer Technical Marketing <http://www.mosasaur.com>
<mailto:[EMAIL PROTECTED]>
512/203.3198 (m)



--
------------------------------------------------------------------
Have a feature request? Not sure the software's working correctly?
If so, please send mail to <[EMAIL PROTECTED]>, not to the list.
List FAQ: <http://www.barebones.com/support/lists/bbedit_talk.shtml>
List archives: <http://www.listsearch.com/BBEditTalk.lasso>
To unsubscribe, send mail to:  <[EMAIL PROTECTED]>

Reply via email to