当前位置: 技术问答>linux和unix
cshell脚本中read的问题
来源: 互联网 发布时间:2016-02-12
本文导语: 请教大家个问题,我使用的环境是IBM服务器,操作系统AIX,写了一个c shell脚本,但是老是出错,哪位高人帮看看,脚本如下(文件名111): #!/bin/csh echo abc read ttt echo $ttt 执行结果如下: %csh -xv 111 echo abc^M echo...
请教大家个问题,我使用的环境是IBM服务器,操作系统AIX,写了一个c shell脚本,但是老是出错,哪位高人帮看看,脚本如下(文件名111):
#!/bin/csh
echo abc
read ttt
echo $ttt
执行结果如下:
%csh -xv 111
echo abc^M
echo abc^M
abc
read ttt^M
read ttt^M
/usr/bin/read[53]: ttt^M: is not an identifier
echo $ttt^M
ttt: Undefined variable.
#!/bin/csh
echo abc
read ttt
echo $ttt
执行结果如下:
%csh -xv 111
echo abc^M
echo abc^M
abc
read ttt^M
read ttt^M
/usr/bin/read[53]: ttt^M: is not an identifier
echo $ttt^M
ttt: Undefined variable.
|
在csh里,替代read的用
set aaa=$
set aaa=$