Brett I. Holcomb wrote:
I saw the icons in the newsletter.  Is there a site that I can
download a file with them in it?  I did not see a link in the forum
pages I checked.
They are linked from the authors site.

I wrote a bash script to  download them. You would have to update the
list if the directory contents change, I just grepped it from a copy of
the directory they reside in.

enjoy.

neal
#!/bin/bash
# get icons from web page.
# this is the site the truely great new icons are on
site=http://w0r.mine.nu/gentoo

# this is the *.png list from that site
icons="abiword-l33t.png cs-l33t.png gaim-l33t.png gentoo-g-blured.png gentoo-g.png gentoo-l33t.png gentoo-w0r.png gimp-l33t.png kate-l33t.png kdehome-l33t.png kmail-l33t.png konqueror-l33t.png kvim-l33t.png layers.png mail-l33t.png mouse1-l33t.png mouse2-l33t.png mozilla-l33t.png mplayer1-l33t.png mplayer2-l33t.png ms-office-error.png msn-l33t.png openoffice-l33t.png opera-l33t.png phoenix-l33t.png skull-l33t.png skullred-l33t.png slypheed-l33t.png term-l33t.png tux-l33t.png vim-l33t.png xchat-l33t.png xchat2-l33t.png xmms-l33t.png zenon1.png"

# This is what I did to get the list above:
# "cat icon.scratch | cut -d\   -f2| grep png"
# where icon.scratch was the copy of the directory contents.
# I didn't want to have to screw around with sending 2 files.
# I am sure there is a better way.

for icon in $icons; do
    wget $site/$icon
done

# Copyleft GNU General Public License
# http://www.gnu.org/copyleft/gpl.html
# Fold, spindle, mutilate, improve and repeat.

--
[EMAIL PROTECTED] mailing list

Reply via email to