Live Chat!

write a online manga downloader using bash

          0 votos

November 29th, 2007 mysurface

There are plenty of site that allows you to read manga online, but you have to tolerate for the slow access and ton’s of heavy loaded ads. You can’t download the manga directly using batch download provided by wget or any download manager. but if you know how to do bash script, you could somehow [...]

Posted in Bash, Text Manipulation, seq, wget | Hits: 22004 | 4 Comments »

generate and print a sequence of number

          0 votos

September 28th, 2006 mysurface

To generate a sequence of number we can use seq
seq 1 10
With this it prints 1 to 10 line by line, because by default separator is new line, anyway you can check, do this
seq -s” ” 1 10
Doing this it change new line to a single blank space.
But that is the usage of the this [...]

Posted in Misc, Text Manipulation, backquote, cat, pipeline, seq, wc | Hits: 9620 | 1 Comment »