top of page

Linux Magazine Download Script

  • Writer: Mahammad Rafi
    Mahammad Rafi
  • May 23, 2017
  • 1 min read

Since I have got Linux fever I have been searching for the all kind of Linux knowledge sources and found out that magazines are good sources of unheard things. As it turns out, I have made one script which quite small in lines but download all latest and previous issues of MagPi as well as Linux Voice magazines. Append below mentioned lines to bashrc file would run the script flawlessly.

LinuxVoice_Magazine_Downloader () {
mkdir -p ~/LinuxVoice
cd ~/LinuxVoice/
for i in {001..050} 
do wget --read-timeout=5 --tries=0 -c \
https://www.linuxvoice.com/issues/$i/Linux-Voice-Issue-$i.pdf 
done
cd
}
MagPi_Magazine_Downloader () {
mkdir -p ~/MagPi
cd ~/MagPi/
wget -c -r -A.pdf -np -nd -l1 -erobots=off \
https://www.raspberrypi.org/magpi-issues
cd
}

New issues of Linux Voice is no longer available as it merged to Linux Magazine but it worth downloading the previous issues as a Linux enthusiast

Коментарі


adult-apple-device-business-340152.jpg

Linux .....because life is too short for reboots

I am an avid fan of Linux and open source enthusiast so I make a  decision to meet people through Technical Live Blogger. I have been enjoying Linux for the past six years. Back in 2013, I stumbled upon an article about the Ubuntu live CD. That moment changed my life. I know that statements like that belong to those exaggerators but it is actually true. Within 24 hours of reading the article, I had turned my own desktop in Ubuntu one – a platform where I have explored many Linux things ever since. If you just want to say hello, do say "Hello" at md.rafi1615@gmail.com or visit the virtualworld.

  • LinkedIn Social Icon
  • Twitter Social Icon
  • Instagram Social Icon
  • Facebook Social Icon

© 2023 by Extreme Blog. Proudly created by Mahammad Rafi

bottom of page