Archive for the ‘Comics’ Category

Converting file types in shell

I’ve been really wanting to convert the file type of my .cbr and create some php pages with them to view from anywhere. The first step I’m covering is how to convert the files into a compression format that I can work with.  First of all, .CBR and .CBZ files are .RAR and .ZIP, respectively.

So, starting with CBR:

for file in *.cbr ; do cp $file `echo $file | sed ‘s/\(.*\.\)cbr/\1rar/’` ; done

CBZ:

for file in *.cbz ; do cp $file `echo $file | sed ‘s/\(.*\.\)cbz/\1zip/’` ; done

Next time, I’ll write this in python.  Just for fun.

This Happens To Me Almost Everyday!!!

So True...

New Iron Man 2 Trailer!

Penny Arcade: The Opposite of Poker Face

http://www.penny-arcade.com/comic/2010/3/5/

[10:47] Victor: LOL
[10:47] Victor: that guy is totally you
[10:49] Kingston: which one?
[10:49] Kingston: the cheezy face guy?
[10:49] Victor: the “traitor”
[10:49] Victor: haha
[10:49] Kingston: haha
[10:49] Kingston: so true…

Return top