fedora中shell 脚本的问题

发布于 2021-11-17 06:21:29 字数 6072 浏览 877 评论 2

最近在学习shell脚本,但写脚本的时候总是出现一些错误:(我用的是fedora18系统)

1,

#!/bin/bash
#Bash scrip program test,made by wxj
#until do ... done
number=0
until [ $number -gt 10 ] ; do
        echo $number
        number='expr $number + 1'
done

    运行bash until.sh 时总是出现提示:expr $number + 1
                                                   until.sh: 第 5 行:[: 参数太多

2.

#!/bin/bash
#Bash scrip program test,made by wxj
#if elif elif fi


echo 'word1:'
read word1
echo 'word2:'
read word2
echo 'word3:'
read word3
if [ "$word1" = "$word2" -a "$word2" = "%word3" ]; then
        echo 'match:words1,2&3'
elif [ "$word1" = "$word2" ];then
        echo 'match:words1&2'
elif [ "$word1" = "$word3" ];then
        echo 'match:words1&3'
elif [ "$word2" = "$word3" ];then
        echo 'match:words2&3'
else
        echo 'no match'
fi

运行bash if.sh时输入[wxj@localhost scrip]$ bash if.sh
                                                            word1:
                                                            a
                                                            word2:
                                                            a
                                                            word3:
                                                            a
                                                            match:words1&2

输入a a a不是应该输出match:words1,2&3么?

一二是不是说明fedora里面没有-a -gt -lt 之类的命令阿,怎么解决

3.

#!/bin/bash
#Bash scrip program , made by wxj
#fun()

hello()
{
        echo  "Hello today's date is 'date' "
}

echo "enter into hello()"
hello
echo "out of hello()"

运行bash fun.sh时出现:[wxj@localhost scrip]$ bash fun.sh
                                                                 enter into hello()
                                                                 Hello today's date is 'date'
                                                                 out of hello()

这和视频教程里面的结果不一样,输出的第二行不是应该是Hello today's date is 2011年 8月 15日 星期一 22:43:28 cst

初学嵌入式的这段时间以来,遇到了很多问题,多谢大家的帮助。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

裸钻 2021-11-20 18:50:25

1。反引号

2。

"$word2" = "%word3" 

认真看

3。反引号

等风来 2021-11-18 03:09:20

哈哈,我先解决了一个:第三个问题中应该用反单引号(键盘1左边那个)将date引起来

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文