Here's a text filter which will do just that, using `lynx` which
unfortunately is not installed in OS X by default, but you can acquire
it either from Homebrew (my preference) or if you want a precompiled
binary in a nice installer:
http://rudix.googlecode.com/files/lynx-2.8.7-3.pkg
TjL
#!/bin/zsh -f
# get just the links from a file
#
# From: Timothy J. Luoma
# Mail: luomat at gmail dot com
# Date: 2013-03-02
NAME="$0:t"
if ((! $+commands[lynx] ))
then
echo "$NAME: lynx is required but not found in $PATH"
cat "$@"
exit 1
fi
cat $@ | lynx -dump -listonly -nonumbers -stdin -width 1024
exit 0
#
#EOF
--
--
You received this message because you are subscribed to the
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
<http://groups.google.com/group/bbedit?hl=en>
If you have a feature request or would like to report a problem,
please email "[email protected]" rather than posting to the group.
Follow @bbedit on Twitter: <http://www.twitter.com/bbedit>
---
You received this message because you are subscribed to the Google Groups
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.