electronic nerdcore geek breakbeat idm noise instrumental cool beat experimental
| | 1 | #!/bin/bash | | 4:21 |
| | 2 | for x in *.wav; do | | 3:46 |
| | 3 | oggenc -q 6 $x | | 3:57 |
| | 4 | rm $x | | 2:31 |
| | 5 | done | | 5:46 |
1. It's a new EP by Gerador Zero.
2. It's the first line of all scripts on Linux/Unix that make use of the Bash shell, a fundamental piece of the GNU system.
The EP has this name because:
1. I'm a geek and I've been trying to make some tracks about GNU/Linux for some time.
2. Weird names are cool (If you don't believe it, ask Aphex Twin).
It's a Bash script. If you write this inside a text file and run it on Linux (or MacOS X, or Windows with Cygwin), it will work perfectly. What does it do? Well, if you know Bash, you already know. If you don't, I'll explain it:
#!/bin/bash
(Tells the system to use Bash to run this script)
for x in *.wav; do
(Do the following with all .wav files:)
oggenc -q 6 $x
(Convert it to OGG Vorbis with quality 6)
rm $x
(Delete the original .wav)
done
(Self-explanatory)
Obviously you'll need oggenc for it to work, but most Linux flavors come with it pre-installed.
I know, but a CD with just one song isn't that much interesting.

| Genre | Electronica | ||||||||||||||
| Release | April 24, 2007 | ||||||||||||||
| |||||||||||||||
Copy and paste this HTML code onto your blog :