- Command and Conquer.
- How-To : Beginning Python – Part 34, LibreOffice Part 15, and Linux Astronomy Apps.
- Graphics : GIMP – The Beanstalk Part 3, and Inkscape Part 2.
- Linux Lab – Tweet Screen Part 1.
- Review – Installing Software.
- Closing Windows – Linux Equivalents.
- Audio Flux – some CC music tracks.
- plus: Ubuntu Games, My Desktop, My Opinion, My Story, and much much more!
Well, if you interested in it, download it here. You can also download back issues from here or use this simple bash script (created by Kevin Lynch @Google+) to do bulk download for issues you want:
via: Full Circle Magazine
- #!/bin/bash
- echo -n "What is the issue number of the first Full Circle Magazine to
- download? "
- read firstissue
- echo ""
- echo -n "What is the issue number of the last Full Circle Magazine to
- download? ( > or = the previous number) "
- read lastissue
- cd ~/Desktop # ~ brings you to the home directory of the user and from
- there I wanted to use my folder 'Desktop'
- for a in `seq $firstissue $lastissue`
- do
- wget -U Mozilla "http://dl.fullcirclemagazine.org/issue"$a"_en.pdf"
- done
- echo ""
- echo "Complete!"
0 comments:
Post a Comment