sh 脚本中 [[ ]] 出错,但在 cli 下正常。

发布于 2021-11-14 06:38:04 字数 1430 浏览 841 评论 1

#!/bin/bash
echo '[[ -f /etc/rc.local ]] && echo yes || echo no'
[[ -f /etc/rc.local ]] && echo yes || echo no
echo '[ -f /etc/rc.local ] && echo yes || echo no'
[ -f /etc/rc.local ] && echo yes || echo no

结果

[[ -f /etc/rc.local ]] && echo yes || echo no
test.sh: 3: [[: not found
no
[ -f /etc/rc.local ] && echo yes || echo no
yes

但在 cli 下却正常

~# [[ -f /etc/rc.local ]] && echo yes || echo no
yes

bash 版本

~# bash --version
GNU bash, version 4.1.5(1)-release (i486-pc-linux-gnu)
Copyright (C) 2009 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>

This is free software; you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

debian 版本

~# lsb_release -a
No LSB modules are available.
Distributor ID:	Debian
Description:	Debian GNU/Linux 6.0.3 (squeeze)
Release:	6.0.3
Codename:	squeeze

请教是怎么回事?

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

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

发布评论

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

评论(1

羁拥 2021-11-16 11:09:38

直接编辑应该没问题,如果是复制拷贝的,试试dos2unix看看~~

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