Jack
Jack

Reputation: 805

set command error in c shell script

I am doing this on my script:

set Cnt1 =`echo $Cnt | awk '{print $1}'`
set Cnt2 =`echo $Cnt | awk '{print $2}'`
set Cnt3 =`echo $Cnt | awk '{print $3}'`

I am getting a error saying " set: Variable name must begin with a letter." Can someone tell me what I am doing wrong.. Cnt got value like this:

Cnt = 1 1 1

Upvotes: 8

Views: 30199

Answers (1)

CharlesB
CharlesB

Reputation: 90316

You must remove space between Cnt and =

set Cnt1=`echo $Cnt | awk '{print $1}'`
set Cnt2=`echo $Cnt | awk '{print $2}'`
set Cnt3=`echo $Cnt | awk '{print $3}'`

Please leave (t)csh, it's awful, and read Top Ten Reasons not to use the C shell!

Upvotes: 9

Related Questions