Re: [Audacity-devel] Mac and source re-uploaded
A free multi-track audio editor and recorder
Brought to you by:
aosiniao
|
From: Leland <le...@au...> - 2011-03-30 16:32:30
|
On 3/30/11 11:24 AM, Benjamin Drung wrote: >>> 3) Your 'if [[ $variable = "something" ]] ; then' fail if the variable >>> is empty. You need to add double quote: 'if [[ "$variable" = "something" >>> ]] ; then' or with test (which I prefer): 'if test "$variable" = >>> something; then' >> But, they'll never be empty. :-) > > Better be safe than sorry. :) > What's weird about it is that I ALWAYS quote things in the scripts that I write for work. Why I didn't for this, I have no idea. :-) Will quote them... Leland |