博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux shell中比较操作符“==”与“-eq”对比
阅读量:5889 次
发布时间:2019-06-19

本文共 1914 字,大约阅读时间需要 6 分钟。

在Linux shell编程中,经常会用到判断字符串是否相等,可用于判断字符串是否相等的操作符有‘-eq’(相等), ‘-ne’(不等于), ‘-lt’(小于), ‘-le’(小于或等于), ‘-gt’(大于)或‘-ge’(大于或等于),以及=,==,!=,<,>。

在bash指南中,字母操作符和符号操作符的两端的参数英语表达式不相同,符号操作符用的是string,字母操作符用的是arg。

  • string1==string2

  • string1=string2

  • True if the strings are equal. ‘=’ should be used with the test command for POSIX conformance.

  • string1!=string2

  • True if the strings are not equal.

  • string1<string2

  • True ifstring1sorts beforestring2lexicographically.

  • string1>string2

  • True ifstring1sorts afterstring2lexicographically.

  • arg1OParg2

  • OP is one of ‘-eq’, ‘-ne’, ‘-lt’, ‘-le’, ‘-gt’, or ‘-ge’. These arithmetic binary operators return true ifarg1is equal to, not equal to, less than, less than or equal to, greater than, or greater than or equal toarg2, respectively.Arg1andarg2may be positive or negative integers.

在实际编程中发现,当用字母操作符,虽然效果与符号操作符相同,但会产生一个错误提示“[[: arg2: syntax error: operand expected (error token is "arg2")”。

如原文为

1
[[ 
"$1" 
-
eq 
"" 
]] && 
echo 
"delete all spaces and comments of specialized file, using with $@ filename" 
&& 
exit 
1

修改为

1
[[ 
"$1" 
== 
"" 
]] && 
echo 
"delete all spaces and comments of specialized file, using with $@ filename" 
&& 
exit 
1

就不再提示了。

附带一个实用小脚本,用途:grep掉空格和注释符(#),简单实用。

1
2
3
4
#!/bin/bash   
# delete all spaces and comments of specialized file, using with $@ filename    
[[ 
"$1" 
== 
"" 
] && 
echo 
"delete all spaces and comments of specialized file, using with $@ filename" 
&& 
exit 
1    
grep 
-
v 
\
# $1 | grep -v ^$

添加到操作系统中:

1
2
3
4
5
6
7
8
9
10
cat 
> delsc.sh << eof   
#!/bin/bash    
# delete all spaces and comments of specialized file, using with $@ filename    
[[ 
"\$1" 
-== 
"" 
]] && 
echo 
"delete all spaces and comments of specialized file, using with \$@ filename" 
&& 
exit 
1    
grep 
-
v 
\
# \$1 | grep -v ^$    
eof    
chmod 
+x .
/delsc
.sh    
\
mv 
delsc.sh 
/usr/local/bin/delsc    
which 
delsc    
cat 
/usr/local/bin/delsc

用法:

1
delsc filename
本文转自 urey_pp 51CTO博客,原文链接:http://blog.51cto.com/dgd2010/1542048
,如需转载请自行联系原作者
你可能感兴趣的文章
一个最简单的Linux内核模块
查看>>
主域控制器的安装与配置步骤与方法
查看>>
调整Flash与div的位置关系
查看>>
javascript的dom选择器
查看>>
Objective - c 创建二维数组
查看>>
〖Android〗/system/etc/fallback_fonts.xml
查看>>
30个美丽干净的,帮助用户专注于内容的网站设计
查看>>
高级Bash脚本编程指南(27):文本处理命令(三)
查看>>
JavaScript---事件
查看>>
Android NDK入门实例 计算斐波那契数列一生成jni头文件
查看>>
c/c++性能优化--I/O优化(上)
查看>>
将HTML特殊转义为实体字符的两种实现方式
查看>>
jquery 保留两个小数的方法
查看>>
The 6th tip of DB Query Analyzer
查看>>
boost xpressive 例子
查看>>
C++容器和算法
查看>>
leetcode -- Convert Sorted Array to Binary Search Tree
查看>>
ADO.NET访问Access(文本数据库)数据操作(CRUD)
查看>>
razor 语法
查看>>
贝佳斯绿泥_百度百科
查看>>