shell编程出错求助 判断一个文件是否为符号链接文件并作出操作

我用的gedit,代码如下echo"fileisnotexit"exit;elseif[!-h"$myFile"]thenecho"thisfileisnotasymbo... 我用的gedit,代码如下

echo "file is not exit"
exit;
else
if[ ! -h"$myFile" ]
then
echo "this file is not a symbol link"
exit
else
mv $myFile /tmp
echo "$myFile has moved to /tmp"
要实现的功能是,判断一个文件是否为符号文件,如果是则移动到tmp临时文件夹,如果不是则不进行任何操作。但是错误提示是这样的

求大神不吝赐教 在下初学求指点
啊不好意思没注意。。是从虚拟机粘贴过来的 我也不知道为什么不完整
以下是修改之后完整的了:
echo "please input the direction of the file you want to test:"
read myFile
echo "the direction is $myFile "
if [ ! -f "$myFile" ];
then{
echo "file is not exit"
exit}
else{
if [ ! -h"$myFile" ]
then{
echo "this file is not a symbol link"
exit}
else{
mv $myFile /tmp
echo "$myFile has moved to /tmp"}}
然后出现的问题如补充图片所示
展开
 我来答
J冠军侯_
推荐于2018-03-26
知道答主
回答量:16
采纳率:0%
帮助的人:21.7万
展开全部
语法不对吧。没必要加{}
把括号去了,if结束加个fi
echo "please input the direction of the file you want to test:"
read myFile
echo "the direction is $myFile "
if [ ! -f "$myFile" ];
then
echo "file is not exit"
exit
else
if [ ! -h"$myFile" ]
then
echo "this file is not a symbol link"
exit
else
mv $myFile /tmp
echo "$myFile has moved to /tmp"
fi
fi
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lightmenow
2014-06-02 · TA获得超过330个赞
知道小有建树答主
回答量:319
采纳率:0%
帮助的人:155万
展开全部
代码不完整。请全部贴出来。
第四行的 if 应该与 [ 之间有一个空格。
追问
昨晚把问题补充了一下,现在你看看出错在哪里?
追答
shell 中 if 的语法结构:
if [ ]
then
else
fi
不需要中括号包围。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式