Chinaunix

标题: `end of file' unexpected [打印本页]

作者: b02213131    时间: 2010-06-03 10:43
标题: `end of file' unexpected
本帖最后由 b02213131 于 2010-06-03 11:11 编辑

set SRCPath_FDS=/src/SOURCE_FDS1
#
set DESTPath_FDS=~/src/FDS
if [ ! -f $DESTPath_FDS ] then
        mkdir -p $DESTPath_FDS
endif


`end of file' unexpected

如果改成fi,就是 `fi' unexpected
作者: b02213131    时间: 2010-06-03 10:45
vi里面写的,没有^M
作者: mercuyr    时间: 2010-06-03 11:02
"if [ ! -f DESTPath_FDS ] then"  改成 “if [ ! -f DESTPath_FDS ]; then”。
试试!
作者: b02213131    时间: 2010-06-03 11:10
回复 3# mercuyr


    试了,错误依旧……
作者: aluoyeshi    时间: 2010-06-03 11:13
把endif改成fi
作者: mercuyr    时间: 2010-06-03 11:22
root@debian:~# cat 1.sh
#!/bin/sh
set DESTPath_FDS=~/src/FDS
if [ ! -f $DESTPath_FDS ]; then
        mkdir -p $DESTPath_FDS
fi
root@debian:~# ./1.sh
root@debian:~# echo $?
0
root@debian:~#
作者: lkk2003rty    时间: 2010-06-03 11:41
楼上正解
if [ ...];then

if [ ...]
then
作者: waker    时间: 2010-06-03 11:42
csh的语法是
if (exp) then
...
else if (exp) then
...
else
...
endif
作者: b02213131    时间: 2010-06-03 14:09
多谢6楼,和其他
作者: leal402    时间: 2010-06-03 14:18
csh的语法是
if (exp) then
...
else if (exp) then
...
else
...
endif
waker 发表于 2010-06-03 11:42



    老大如何知道是csh,set ?
作者: lkk2003rty    时间: 2010-06-04 09:14
回复 10# leal402


    你shell脚本的#!后面跟的是啥 看看就知道了。、。。。。。。。。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2