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"}}
然后出现的问题如补充图片所示 展开
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"}}
然后出现的问题如补充图片所示 展开
2个回答
展开全部
语法不对吧。没必要加{}
把括号去了,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
把括号去了,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
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
代码不完整。请全部贴出来。
第四行的 if 应该与 [ 之间有一个空格。
第四行的 if 应该与 [ 之间有一个空格。
追问
昨晚把问题补充了一下,现在你看看出错在哪里?
追答
shell 中 if 的语法结构:
if [ ]
then
else
fi
不需要中括号包围。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询