complex zip script

complex zip script

am 04.06.2005 19:14:12 von Mac

Background:
After running the perl script "dailystrips" daily for a few years I
need to clean up. I have a ~100 directories containing 50 to 300
image files each.

I need:
1.) A way to remove the duplicates, they are links, not duplicate
files, so a command that will recursivly remove symbolic links and
leave real files alone is what I want. I think.

2.) A way to archive the old webcomics.
Now running the following command will do what I want:
soun:/home/dojo/webcomics/9 Chickweed Lane # zip -m9vo
"/home/dojo/cartoons/Archive/Webcomic - 9 Chickweed Lane 2004.zip"
2004*
The problem with that is that I will have to do it ~100 times for each
subdirectory and again for each year. What is want is something that
I can run from /home/dojo/webcomics, that will dive into each
subdirectory and use that subdirectory name as part of the archive
name that is created in /home/dojo/cartoons/Archive/.

Using my vast programming knowledge I can guess there will be an
if..then loop involved, but that is all I know..

First person to solve, would you like year's supply (2004) of webcomic
in zip format?

Laurence.

dailystrips, a writeup:
http://everything2.com/index.pl?node_id=1538773

Re: complex zip script

am 04.06.2005 19:43:36 von Loki Harfagr

Le Sat, 04 Jun 2005 19:14:12 +0200, mac a écrit :

> Background:
> After running the perl script "dailystrips" daily for a few years I
> need to clean up. I have a ~100 directories containing 50 to 300
> image files each.
>
> I need:
> 1.) A way to remove the duplicates, they are links, not duplicate
> files, so a command that will recursivly remove symbolic links and
> leave real files alone is what I want. I think.

This would do :
find /yourbasedir/ -type l -exec rm -f {} \;

Test what would be destroyed first, just in case :D)
find /yourbasedir/ -type l -exec ls -la {} \;

> 2.) A way to archive the old webcomics. Now running the following
> command will do what I want: soun:/home/dojo/webcomics/9 Chickweed Lane
> # zip -m9vo "/home/dojo/cartoons/Archive/Webcomic - 9 Chickweed Lane
> 2004.zip" 2004*
> The problem with that is that I will have to do it ~100 times for each
> subdirectory and again for each year. What is want is something that I
> can run from /home/dojo/webcomics, that will dive into each subdirectory
> and use that subdirectory name as part of the archive name that is
> created in /home/dojo/cartoons/Archive/.
>
> Using my vast programming knowledge I can guess there will be an
> if..then loop involved, but that is all I know..

I am sorry, maybe it's me but I think we need more details
on the complexity of struct and namespace of your files, just
to avoid the usual traps in treating names and archs !
Would you post an excerpt of :
tree /home/dojo/webcomics


> First person to solve, would you like year's supply (2004) of webcomic
> in zip format?

Well, could be but I don't know what it is :D)
Though I imagine if you do all this jobe its something precious ;-)
Anyway, I like comics so ...

Re: complex zip script

am 04.06.2005 20:36:05 von Mac

>> 1.) A way to remove the duplicates, they are links, not duplicate
>> files, so a command that will recursivly remove symbolic links and
>> leave real files alone is what I want. I think.
>
>This would do :
> find /yourbasedir/ -type l -exec rm -f {} \;
>
Thanks! That worked!


soun# tree /home/dojo/webcomics
/home/dojo/webcomics
|-- 9 to 5
| |-- 2003.12.15.jpg
| |-- 2003.12.16.jpg
| |-- 2003.12.17.jpg
| |-- 2003.12.19.jpg
| |-- 2003.12.20.jpg
| |-- 2003.12.22.jpg

| |-- 2005.05.31.gif
| |-- 2005.06.01.gif
| |-- 2005.06.02.gif
| |-- 2005.06.03.gif
| `-- 2005.06.04.gif
|-- Adventurers!
| |-- 2003.12.16.gif
| |-- 2003.12.20.gif
| |-- 2003.12.25.gif


I would like to zip up these files a year at a time and move to an
archive in /home/dojo/cartoons/Archive/ with a name reflecting the
strip and the year. eg "webcomic - COMICNAME$ YEAR$.zip"

>Well, could be but I don't know what it is :D)
>Though I imagine if you do all this jobe its something precious ;-)
>Anyway, I like comics so ...
If there is a webcomic you are interested in and if it is one of the
100 I've been monitoring, I can send you a zip file of 2004. (2003
and 2005 are incomplete, and the dailystrips script is 95% accurate.)

Laurence.

dailystrips, a writeup:
http://everything2.com/index.pl?node_id=1538773

Re: complex zip script

am 05.06.2005 16:04:15 von Loki Harfagr

Le Sat, 04 Jun 2005 20:36:05 +0200, mac a écrit :

>>> 1.) A way to remove the duplicates, they are links, not duplicate
>>> files, so a command that will recursivly remove symbolic links and
>>> leave real files alone is what I want. I think.
>>
>>This would do :
>> find /yourbasedir/ -type l -exec rm -f {} \;
>>
> Thanks! That worked!
>
>
> soun# tree /home/dojo/webcomics
> /home/dojo/webcomics
> |-- 9 to 5
> | |-- 2003.12.15.jpg
> | |-- 2003.12.16.jpg
> | |-- 2003.12.17.jpg
> | |-- 2003.12.19.jpg
> | |-- 2003.12.20.jpg
> | |-- 2003.12.22.jpg
>
> | |-- 2005.05.31.gif
> | |-- 2005.06.01.gif
> | |-- 2005.06.02.gif
> | |-- 2005.06.03.gif
> | `-- 2005.06.04.gif
> |-- Adventurers!
> | |-- 2003.12.16.gif
> | |-- 2003.12.20.gif
> | |-- 2003.12.25.gif
>
>
> I would like to zip up these files a year at a time and move to an
> archive in /home/dojo/cartoons/Archive/ with a name reflecting the
> strip and the year. eg "webcomic - COMICNAME$ YEAR$.zip"

This should do what I think you want to achieve
for ll in /tmp/webcomics/* ; do yy=$(ls "${ll}" |head -1|cut -d. -f1); zip
-m9vo "${ll}"-"${yy}".zip "${ll}"/* ; done

But please, test it on a subpart copy of your data before to
run it with the -m zip option !

Caution: this will work correctly if your webcomics/ dir contains only
the dirs you want to zip !

If there are any other files or dirs it will break with funny or not
results, so if you're not sure about this please use this :
$ for ll in /tmp/webcomics/* ; do [[ -d "${ll}" ]] && ( yy=$(ls "${ll}" |head -1|cut -d. -f1); zip -m9vo "${ll}"-"${yy}".zip "${ll}"/* ); done

This will cope with the case of unwanted extra files.

If any other added funny condition, please post here :-)

>>Well, could be but I don't know what it is :D) Though I imagine if you
>>do all this jobe its something precious ;-) Anyway, I like comics so ...
> If there is a webcomic you are interested in and if it is one of the 100
> I've been monitoring, I can send you a zip file of 2004. (2003 and 2005
> are incomplete, and the dailystrips script is 95% accurate.)

Er. It might be quite huge for a mail send !
And, where coul I find samples of the 100 webcomics you monitor ?
I had a quick look on your site but found only users comments :-)
(twas a quick look :-)

Re: complex zip script

am 05.06.2005 18:41:33 von Mac

>Caution: this will work correctly if your webcomics/ dir contains only
>the dirs you want to zip !
There are indeed other files.. the html indexes for the comics
generated by dailystrips. I used the command below for my starting
point.
>
>If there are any other files or dirs it will break with funny or not
>results, so if you're not sure about this please use this :
>$ for ll in /tmp/webcomics/* ; do [[ -d "${ll}" ]] && ( yy=$(ls "${ll}" |head -1|cut -d. -f1); zip -m9vo "${ll}"-"${yy}".zip "${ll}"/* ); done

soun# for ll in /home/dojo/webcomics/* ; do [[ -d "${ll}" ]] && (
yy=$(ls "${ll}" |head -1|cut -d. -f1); zip -jm9vo "${ll}"-2004.zip
"${ll}"/2004* ); done

this worked great. I decided to delete 2003 as it is not a complete
year, but 2004 worked fine. I'l put this command a file in /root/
for next year. It'll save me a lot of time. Slack space recovery
saved me ? Mg

>Er. It might be quite huge for a mail send !
>And, where coul I find samples of the 100 webcomics you monitor ?
>I had a quick look on your site but found only users comments :-)
>(twas a quick look :-)
Yes it would be large for mail. I could break it up or can you handle
E2k links?
The site is a write-up of the program I use to pull down the
webcomics, since I use the exclude function, the sample config file
there will only tell you what I'm NOT using. I'll append a directory
listing of all my zip files.

Laurence
mac12356@mweb.co.za
there is no six in my e-mail address.
ls -s
11339 Gary Larson - The Far Side.rar
24380 The Far Side Gary Larson Wilderness Preserves.pdf
11587 Webcomic - 9 Chickweed Lane 2004.zip
2102 Webcomic - All41 - 9.9.99 to 10.10.99.zip
18206 Webcomic - Bot - various authors impromanga.zip
553 Webcomic - Captain Tea - 1-14.zip
11367 Webcomic - Colledge Roomies from Hell 1999.zip
773 Webcomic - Photographs of melocholy Girls.zip
9501 Webcomic - Schlock Mercenary - 2000 Begining.zip
15791 Webcomic - Schlock Mercenary 2001.zip
15872 Webcomic - Schlock Mercenary 2002.zip
20944 Webcomic - Schlock Mercenary 2003.zip
7968 Webcomic - Schlock Mercenary 2004 Jan to ~June.zip
8660 an intro to cerebus and 3 animations.zip
2270 various 5th Wave - 25 cartoons.zip
11179 webcomic - 8-bit Theater - eBook 1.pdf
9677 webcomic - 8-bit Theater - eBook 2.pdf
5365 webcomic - 9 to 5-2004.zip
7896 webcomic - A god's life - complete.zip
3055 webcomic - Absurd Notions 1999.zip
2410 webcomic - Absurd Notions 2000.zip
2727 webcomic - Absurd Notions 2001.zip
1898 webcomic - Absurd Notions 2002.zip
28904 webcomic - Acid Reflux 1 to 470.zip
10815 webcomic - Adam@home-2004.zip
8777 webcomic - Adventurers - 1-99.zip
7660 webcomic - Adventurers - 100-199.zip
4973 webcomic - Adventurers - 200-299.zip
5093 webcomic - Adventurers - 300-407.zip
19952 webcomic - Adventurers - 408-17feb2003.zip
7992 webcomic - Adventurers!-2004.zip
2715 webcomic - After - could not find again.zip
25525 webcomic - After Y2k 0-343.zip
6667 webcomic - Anti-hero for Hire-2004.zip
1481 webcomic - Argon Zark - chaper2 incomplete.zip
4228 webcomic - Argon Zark chaper1.zip
9714 webcomic - Arlo & Janis-2004.zip
6010 webcomic - AsIf 176 - 207.zip
3239 webcomic - AsIf_01-25.zip
3640 webcomic - AsIf_101-125.zip
3792 webcomic - AsIf_126-150.zip
3984 webcomic - AsIf_151-175.zip
3507 webcomic - AsIf_26-50.zip
3499 webcomic - AsIf_51-75.zip
3720 webcomic - AsIf_76-100.zip
1854 webcomic - AsIf_other.zip
135893 webcomic - Astronomy Picture of the Day (big image)-2004.zip
9345 webcomic - BC-2004.zip
9413 webcomic - Ballard Street-2004.zip
7247 webcomic - Better days [furry] until 7-28-04 - by Jay
Naylor.rar
4508 webcomic - Bobbins - 2000.zip
5465 webcomic - Bobbins - 2001.zip
1257 webcomic - Bobbins - 2002.zip
2338 webcomic - Bobbins1998.zip
9337 webcomic - Bobbins1999.zip
3043 webcomic - Bottom Liners-2004.zip
13017 webcomic - Bound and Gagged-2004.zip
5033 webcomic - Buttlord GT 1- 62.zip
11852 webcomic - Cats with Hands-2004.zip
3103 webcomic - Citrusville 1 - 146.zip
8580 webcomic - Clan of the Cats - 1999.zip
19379 webcomic - Clan of the Cats - 2000.zip
27575 webcomic - Clan of the Cats - 2001.zip
11515 webcomic - Close to Home-2004.zip
13477 webcomic - Colledge roomies from Hell almost all of 2000.zip
9702 webcomic - Committed-2004.zip
8596 webcomic - Cornered-2004.zip
25605 webcomic - Ctrl+Alt+Del-2004.zip
7127 webcomic - Cyantian Chronicles 20010511 to 20020822.zip
10310 webcomic - Dilbert 1999.zip
9890 webcomic - Dilbert 2000.zip
10050 webcomic - Dilbert 2001.zip
10434 webcomic - Dilbert 2002.zip
11547 webcomic - Dilbert 2003.zip
12144 webcomic - Dilbert 2004.zip
9301 webcomic - Dilbert Cartoon Archive (1996).zip
8849 webcomic - Dilbert Cartoon Archive (1997).zip
9145 webcomic - Dilbert Cartoon Archive (1998).zip
9133 webcomic - Dilbert-2004.zip
9822 webcomic - Dilbert_1994.zip
10967 webcomic - Doctor Fun-2004.zip
17281 webcomic - Doonesbury-2004.zip
13673 webcomic - Dragon Mango up to Jan 2003.zip
12036 webcomic - Dragon Tail 1999.zip
11183 webcomic - Dragon Tails-2004.zip
18975 webcomic - Dykes to watch out for Recent 303 to 435.zip
11687 webcomic - Eat the Roses -2000-2001.zip
4649 webcomic - Eat the Roses -2002.zip
14734 webcomic - Edge City-2004.zip
5994 webcomic - Elflife 1990.zip
12580 webcomic - Elflife 2000.zip
16676 webcomic - Elflife 2001.zip
8548 webcomic - Errant Story-2004.zip
11876 webcomic - Eversummer eve chapter 1-3.zip
5778 webcomic - Extra Life-2004.zip
9049 webcomic - Fat Cats-2004.zip
9930 webcomic - Flight Deck-2004.zip
33893 webcomic - Flying Suit Reiko.zip
8084 webcomic - FoxTrot-2004.zip
2270 webcomic - Freefall 0 to 100.zip
2402 webcomic - Freefall 101 to 200.zip
2434 webcomic - Freefall 201 to 300.zip
2458 webcomic - Freefall 301 to 400.zip
2354 webcomic - Freefall 401 to 500.zip
1213 webcomic - Freefall 501 to 550.zip
3548 webcomic - Freefall-2004.zip
16969 webcomic - Funky Winkerbean-2004.zip
13473 webcomic - Funny Farm-2004.zip
1333 webcomic - GPF - 1998.zip
10334 webcomic - GPF - 1999.zip
11111 webcomic - GPF - 2000.zip
13505 webcomic - GPF - 2001.zip
17657 webcomic - GPF - 2002.zip
6330 webcomic - Get Fuzzy - misc.zip
13281 webcomic - Get Fuzzy-2004.zip
13009 webcomic - Ghastly's Ghastly Comic-2004.zip
30141 webcomic - Hamlet the manga 1 to 171.zip
14999 webcomic - Helen, Sweetheart of the Internet-2004.zip
10550 webcomic - Herman-2004.zip
7543 webcomic - In the Bleachers-2004.zip
15904 webcomic - It's Walky-2004.zip
2066 webcomic - Itazura Hakase.zip
1522 webcomic - Its Walky 1997.zip
2270 webcomic - Its Walky 1998.zip
11928 webcomic - Its Walky 1999.zip
23595 webcomic - Jackies fridges - 2000-2002.zip
9153 webcomic - Jane's World-2004.zip
1854 webcomic - Kevin and Kell - 1995.zip
7904 webcomic - Kevin and Kell - 1996.zip
2454 webcomic - Kevin and Kell - 1997.zip
10514 webcomic - Kevin and Kell - 1998.zip
8200 webcomic - Kevin and Kell - 1999.zip
13998 webcomic - Kevin and Kell - 2000.zip
17805 webcomic - Kevin and Kell - 2001.zip
17285 webcomic - Kevin and Kell 2002.zip
17641 webcomic - Kevin and Kell-2004.zip
1798 webcomic - Kozmo p6003 to p6382.zip
15848 webcomic - Krakow - start to 20030117.zip
8636 webcomic - Lethal doses 1-99.zip
2058 webcomic - Little Saiyjins 1 - 78.zip
7527 webcomic - Loose Parts-2004.zip
11856 webcomic - Luann-2004.zip
13882 webcomic - Mac Hall-2004.zip
13061 webcomic - Meehan Streak-2004.zip
7684 webcomic - Meg!-2004.zip
29469 webcomic - MegaTokyo-2004.zip
5738 webcomic - Megatokoyo 1-99.zip
15283 webcomic - Megatokoyo 100-199.zip
10278 webcomic - Megatokoyo 200-299.zip
7888 webcomic - Megatokoyo 300-361.zip
4793 webcomic - Melonpool-2004.zip
2042 webcomic - Minding my own business - week 1 to 9.zip
10046 webcomic - Mister Boffo-2004.zip
9866 webcomic - Mixed Media-2004.zip
16140 webcomic - Monty-2004.zip
4104 webcomic - Mostly Business-2004.zip
17101 webcomic - Movie-comics 156.zip
1674 webcomic - Mr Foo Phase I to IV 25 .zip
10686 webcomic - Muertitos.zip
8897 webcomic - Natural Selection-2004.zip
6747 webcomic - Nodwick 2001.zip
12272 webcomic - Nodwick 2002.zip
2627 webcomic - Nukees 1999.zip
3652 webcomic - Nukees 2000.zip
6426 webcomic - Nukees 2001.zip
12648 webcomic - Oddly Enough-2004.zip
31583 webcomic - Off the Mark - 1870 pics.zip
5714 webcomic - Off the Mark-2004.zip
3660 webcomic - Our Home Planet 1-50.zip
8348 webcomic - Out of Fika 329-657.zip
11375 webcomic - Overboard-2004.zip
19079 webcomic - PC and Pixel-2004.zip
2226 webcomic - Pantless - misc.zip
15355 webcomic - Pardon My Planet-2004.zip
10430 webcomic - Peanuts-2004.zip
13205 webcomic - Pearls Before Swine-2004.zip
19239 webcomic - Penny Arcade-2004.zip
4384 webcomic - Physic Dyslexia Institute 2000.zip
24988 webcomic - Physic Dyslexia Institute 2001.zip
13509 webcomic - Physic Dyslexia Institute 2002.zip
17853 webcomic - Pibgorn-2004.zip
5009 webcomic - Pillars of Faith - 1 to 20021126.zip
16504 webcomic - Piranha Club-2004.zip
9277 webcomic - Player versus player - 1998.zip
9946 webcomic - Player versus player - 1999.zip
17601 webcomic - Player versus player - 2000.zip
14142 webcomic - Player versus player - 2001.zip
11131 webcomic - Player vs. Player - Current-2004.zip
6791 webcomic - Polymercity - 2000.zip
10719 webcomic - Polymercity - 2001.zip
14734 webcomic - Polymercity - 2002.zip
14859 webcomic - Post sex cleanup till June 2003.zip
8769 webcomic - RPG World-2004.zip
6955 webcomic - RPGworld - 2000.zip
23315 webcomic - RPGworld - 2001.zip
13137 webcomic - RPGworld - 2002.zip
1397 webcomic - Rainbow Six Comic.zip
6018 webcomic - Randy Glasbergen-2004.zip
9125 webcomic - Real Life Adventures-2004.zip
15535 webcomic - Real Life Comics-2004.zip
11231 webcomic - Reality Check-2004.zip
1662 webcomic - Reallife comics 1999.zip
13970 webcomic - Reallife comics 2000.zip
11559 webcomic - Reallife comics 2001.zip
17465 webcomic - Reynolds Unwrapped-2004.zip
10546 webcomic - Rhymes with Orange-2004.zip
15127 webcomic - Rose Is Rose-2004.zip
6250 webcomic - Rubes-2004.zip
15259 webcomic - Sally Forth-2004.zip
17081 webcomic - Scary Go Round-2004.zip
4753 webcomic - Scarygoround - 2002.zip
32 webcomic - Schlock Mercenary-2004.zip
7443 webcomic - Sempai 19991101 to 20000623 (all there is).zip
4244 webcomic - Sephen 2002-20030122.zip
6711 webcomic - Shadowlark Symphony 1 - To see with a blinded
eye.zip
3075 webcomic - Shadowlark Symphony 2 - Riding the dragon's tail.zip
3279 webcomic - Shadowlark Symphony 3 - Playing games.zip
9982 webcomic - Sherman's Lagoon-2004.zip
16600 webcomic - Shoe-2004.zip
9565 webcomic - Sinfest 2000.zip
11203 webcomic - Sinfest-2004.zip
11015 webcomic - Six Chix-2004.zip
6054 webcomic - Sluggy Freelance 1997.zip
18030 webcomic - Sluggy Freelance 1998.zip
22462 webcomic - Sluggy Freelance 1999.zip
14086 webcomic - Sluggy Freelance jan to 23 July2000.zip
30414 webcomic - Sluggy Freelance-2004.zip
6959 webcomic - Smallgrey up to 31 Dec 98.zip
26686 webcomic - Somethingpositive -start to 20030113.zip
9766 webcomic - Speed Bump-2004.zip
11399 webcomic - Stone Soup-2004.zip
8648 webcomic - Strange Brew-2004.zip
11187 webcomic - Strings of fate Act 1 Chapters 1-5.zip
12400 webcomic - Strings of fate Act 1 Chapters 6-10.zip
2506 webcomic - Strings of fate Act 2 Chapter 1.zip
10634 webcomic - Sylvia-2004.zip
6018 webcomic - Tang & Hard - Saturday Mornig Coffee.zip
3275 webcomic - Tang weekly - 1997.zip
8020 webcomic - Tang weekly - 1998.zip
6811 webcomic - Tang weekly - 1999.zip
7087 webcomic - Tang weekly- 2000.zip
5053 webcomic - Tang weekly- 2001.zip
5149 webcomic - Tang weekly- 2002.zip
14606 webcomic - That's Life-2004.zip
4176 webcomic - The 5th Wave-2004.zip
6598 webcomic - The Big Picture-2004.zip
9233 webcomic - The Born Loser-2004.zip
9109 webcomic - The Duplex-2004.zip
11852 webcomic - The Fusco Brothers-2004.zip
2971 webcomic - The Joke's on You-2004.zip
4172 webcomic - The Joy of Tech-2004.zip
6418 webcomic - The Norm-2004.zip
10322 webcomic - The Other Coast-2004.zip
13970 webcomic - The Parking lot is full.zip
7163 webcomic - The Quiqmans-2004.zip
473 webcomic - Ubersoft 1996.zip
953 webcomic - Ubersoft 1997.zip
72 webcomic - Ubersoft 1998.zip
1590 webcomic - Ubersoft 1999.zip
4276 webcomic - Ubersoft 2000.zip
4673 webcomic - Ubersoft 2001.zip
4544 webcomic - Ubersoft-2004.zip
16020 webcomic - Unicorn Jelly Complete.zip
9718 webcomic - User Friendly-2004.zip
14871 webcomic - WIGU-2004.zip
10542 webcomic - Working Daze-2004.zip
8116 webcomic - You Damn Kid-2004.zip
15868 webcomic - avalon high 2000.zip
13709 webcomic - avalon high 2001.zip
1970 webcomic - avalon high1999.zip
8276 webcomic - chop 1-7,10-205.zip
11707 webcomic - dork_tower_#001-#101.pdf
17389 webcomic - dr fun 2002.zip
24056 webcomic - dr_fun2000.zip
22374 webcomic - dr_fun2001.zip
7976 webcomic - dr_fun93.zip
27515 webcomic - dr_fun94.zip
26478 webcomic - dr_fun95.zip
24620 webcomic - dr_fun96.zip
24540 webcomic - dr_fun97.zip
16196 webcomic - dr_fun98.zip
6923 webcomic - dr_fun99.zip
8492 webcomic - dr_fun_logos.zip
1630 webcomic - exploitation now! 2000.zip
10694 webcomic - exploitation now! 2001.zip
5209 webcomic - exploitation now! 2002.zip
1241 webcomic - freefall 550 to 600.zip
2466 webcomic - freefall 601 to 700.zip
2514 webcomic - freefall 701 to 800.zip
2502 webcomic - freefall 801 to 900.zip
641 webcomic - freefall 901 to 926.zip
15555 webcomic - funny farm most of 1999.zip
320 webcomic - kernel panic 20020909 to 20021204.zip
22450 webcomic - machall till 20 June 2003 - not numbered right.zip
9013 webcomic - nevernever 09 1998 till 02 2002.zip
765 webcomic - penny Arcade 1998.zip
7828 webcomic - penny Arcade 1999.zip
9161 webcomic - penny Arcade 2000.zip
11067 webcomic - penny Arcade 2001.zip
6018 webcomic - sinfest april 2003 - current.rar
24300 webcomic - supermegatopia - up till Feb 2003.zip
5481 webcomic - the new adventures of bobbin 1 to 142.zip
2695 webcomic - user-friendly - 1997.zip
9389 webcomic - user-friendly 1998.zip
16728 webcomic - user-friendly 1999.zip
15779 webcomic - user-friendly 2000.zip
10759 webcomic - user-friendly 2001.zip
10202 webcomic - user-friendly 2002.zip
10570 webcomic - user-friendly 2003.zip
5197 webcomic - valkyrie Yuuki 2002.zip
soun:/home/dojo/cartoons/Archive #