当前位置: 技术问答>linux和unix
请问如何在unix批处理中得到批处理参数!read吗?急在线等待!
来源: 互联网 发布时间:2014-11-14
本文导语: 不太懂unix! 运行: ... echo "Input DDN parts directory c" read SOURCEDIR while [ ! -d $SOURCEDIR ]; do ... 提示:read - Command not found sourcedir - undefinde variable 我该怎么办? unix系统好像是sun, 另外请问批处理中#是...
不太懂unix!
运行:
...
echo "Input DDN parts directory c"
read SOURCEDIR
while [ ! -d $SOURCEDIR ]; do
...
提示:read - Command not found
sourcedir - undefinde variable
我该怎么办?
unix系统好像是sun,
另外请问批处理中#是不是注释?
运行:
...
echo "Input DDN parts directory c"
read SOURCEDIR
while [ ! -d $SOURCEDIR ]; do
...
提示:read - Command not found
sourcedir - undefinde variable
我该怎么办?
unix系统好像是sun,
另外请问批处理中#是不是注释?
|
1.在不同的shell中,读入的命令不一样,你可以根据实际情况参考一下:
http://www.fanqiang.com/a4/b1/20010419/102846.html
2.批处理中#是注释的作用
http://www.fanqiang.com/a4/b1/20010419/102846.html
2.批处理中#是注释的作用