This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Handy script for MS Internet Explorer Users


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@consulting.tca.co.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@cygnus.com" with one line of text: "help".


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]