"-a" 是什么意思?在 Unix Shell 脚本中执行
下面一行中的 -a
是什么意思。
if [ "${FILE_SYSTEM}" != "xyz" -a "${FILE_SYSTEM}" != "abc" ]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
下面一行中的 -a
是什么意思。
if [ "${FILE_SYSTEM}" != "xyz" -a "${FILE_SYSTEM}" != "abc" ]
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
人测试
man test
它表示逻辑和运算符。
如果两个操作数都为 true,则条件为 true,否则为 false。
在您的情况下,当变量
$FILE_SYSTEM
不是xyz
且不是abc
时,if
中的条件将为 true 。It means logical and operator.
If both the operands are true then condition would be true otherwise it would be false.
In your case the condition in the
if
will be true when variable$FILE_SYSTEM
is notxyz
and is notabc
.在 shell 脚本测试(左大括号)中,它意味着“并且”,因此如果文件系统 var 不等于 xyz AND 不等于 abc,则测试成功。
In shell script test (open brace) it means "and," so if the file system var does not equal xyz AND does not equal abc, the test succeeds.
等价
于是
An equivalent to
is