- 论坛徽章:
- 0
|
如何在ksh中实现呢?很急。。。
pattern matching 用 case 結構更方便
str="-r"
case "$str" in
-*) echo true ;;
*) echo flase ;;
esac
用任何支援 posix的awk可如此,我的是 gawk ,所以用 posix mode 是不用 gawk
的特性
[victor@localhost ~]$ str='-r'
[victor@localhost ~]$ awk --posix -v x="$str" 'BEGIN{if ( x ~ /^-/ ){print "true" ;}else { print "flase" ;}}'
true
[victor@localhost ~]$ str="r"
[victor@localhost ~]$ awk --posix -v x="$str" 'BEGIN{if ( x ~ /^-/ ){print "true" ;}else { print "flase" ;}}'
flase
[victor@localhost ~]$
當然沒寂寞烈火兄的像 C 的條件操作符簡潔,但老的 awk 也支援  |
|