- album name
#!/bin/bash
- band name
- about
- What is #!/bin/bash?
1. It's an 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).
Why do the tracks have these strange names?
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.
- credits
-
released 01 July 2004
Written, produced and performed by Fabio FZero.
- license
-
Some rights reserved
- feed
-
Feeds for ,
discography
-
May 2010
-
May 2010
-
Feb 2007
contact / help
For help with downloads, click here.
For all other inquiries,
click here.