View Single Post

   
  #9 (permalink)  
Old 02-15-2008, 11:47 AM
Barry Margolin
 
Posts: n/a
Default Re: Losing variables after IFS

In article <5r50109oeus8re6110cg08ljhi87kslvik@4ax.com>,
Scott McMillan <smcm@usa.net> wrote:

> IFS=``


It's not related to your original problem, but you have the wrong type
of quotes there. Those are backticks, and they're used for command
substitution. You should be using single quotes:

IFS=''

--
Barry Margolin, barmar@alum.mit.edu
Arlington, MA
*** PLEASE post questions in newsgroups, not directly to me ***
Reply With Quote