Mail Archives: cygwin/1997/05/16/18:13:12
Here is something I wrote to export the bookmark URL's out of MS
Internet Explorer so that you can load them into another browser.
Enjoy, let me know if you find any problems with it
Regards,
Alec
--
Alec Clews, <alec AT consulting DOT tca DOT co DOT uk>, PGP
keyid:48FA EB81
TCA Consulting Ltd 44-(0)171-415-8159
Fax:44-(0)171-556-0022
New CIty Court, 20 St Thomas Street, London, Britain, SE1 9SD
====================== Usual Disclaimers Apply =====================
[Personal and PGP key http://www.earth.demon.co.uk/alec]
#! /bin/sh
# traverse a diretcory of MS Internet Explorer URL files and
# print out an html list of urls to insert in a bookmark file
# $1 - location of URL files - default is /windows/Favorites
echo '<ul>'
find ${1-/windows/Favorites} -type f -exec grep URL /dev/null {} \;|
sed -e 's/^..*[\\\/]\([^\/][^\/]*\)\.url:URL=\(..*\)$/<li><a
href="\2">\1<\/a><\/li>/'
echo '</ul>'
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request AT cygnus DOT com" with one line of text: "help".
- Raw text -