婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > shell腳本中case條件控制語句的一個bug分析

shell腳本中case條件控制語句的一個bug分析

熱門標簽:打電話機器人接我是他的秘書 華鋒e路航港口地圖標注 江蘇云電銷機器人公司 如果做線上地圖標注 地圖標注員都是年輕人 百度地圖標注錯了有責任嗎 揭陽智能電話機器人推薦 河南信譽好的不封卡電話外呼系統 客服外呼系統怎么樣

在shell腳本中,發現case語句的一個問題。
就是指定小寫字母[a-z]和大寫字母[A-Z]的這種方法不管用了。

出現如下情況:

復制代碼 代碼如下:

[root@station1 ~]# cat case.sh
#!/bin/bash
while :
do
echo -n "input a letter: "
read var
case "$var" in
  [a-z]) echo "Lowercase letter";;
  [A-Z]) echo "Uppercase letter";;
 [0-9]) echo "Digit";;
  *) echo "Punctuation, whitespace, or other";;
esac
done
[root@station1 ~]# bash case.sh
input a letter: a
Lowercase letter
input a letter: A
Lowercase letter
input a letter: 2
Digit
input a letter: 0
Digit
input a letter: B
Lowercase letter
input a letter: y
Lowercase letter
input a letter: ^C
[root@station1 ~]#

可以看到當輸入大小寫字母都會輸出“Lowercase letter”

就當我疑惑不解的時候,奇跡發生了。。。。

復制代碼 代碼如下:

[root@station1 ~]# bash case.sh
input a letter: Z
Uppercase letter
input a letter:

當輸入大寫Z的時候,終于出現了我們想要的結果:Uppercase letter
后來在man bash文檔中也沒有關于"-"代表范圍的說明,值說想匹配"-",就把"-"放到[]中最前面或者最后面。
case word in [ [(] pattern [ | pattern ] ... ) list ;; ] ... esac
A case command first expands word, and tries to match it against each pattern in turn, using the same matching rules as for pathname
expansion (see Pathname Expansion below). The word is expanded using tilde expansion, parameter and variable expansion, arithmetic sub-
stitution, command substitution, process substitution and quote removal. Each pattern examined is expanded using tilde expansion, param-
eter and variable expansion, arithmetic substitution, command substitution, and process substitution. If the shell option nocasematch is
enabled, the match is performed without regard to the case of alphabetic characters. When a match is found, the corresponding list is
executed. If the ;; operator is used, no subsequent matches are attempted after the first pattern match. Using ; in place of ;; causes
execution to continue with the list associated with the next set of patterns. Using ;; in place of ;; causes the shell to test the next
pattern list in the statement, if any, and execute any associated list on a successful match. The exit status is zero if no pattern
matches. Otherwise, it is the exit status of the last command executed in list.

再看下面這段代碼:

復制代碼 代碼如下:

[root@station1 ~]# cat case.sh
#!/bin/bash
while :
do
echo -n "input a letter: "
read var
case "$var" in
[a-c]) echo "Lowercase letter";;
[A-Z]) echo "Uppercase letter";;
[0-9]) echo "Digit";;
*) echo "Punctuation, whitespace, or other";;
esac
done
[root@station1 ~]# bash case.sh
input a letter: a
Lowercase letter
input a letter: b
Lowercase letter
input a letter: c
Lowercase letter
input a letter: d
Uppercase letter
input a letter: e
Uppercase letter
input a letter: ^C
[root@station1 ~]#

可以看出來它的編碼方式是:aAbBcCdDeE...yYzZ
所以才會出現這種情況。這也算是一個小bug吧,如果想真的想達到我們想要的結果,可以用posix的[:upper:]。
個人想法:有時候出現這種情況也不是個壞事,或許還可以利用這個bug去做點事。

您可能感興趣的文章:
  • 詳解JavaScript中循環控制語句的用法
  • 詳解JavaScript的流程控制語句
  • linux shell流程控制語句實例講解(if、for、while、case語句實例)
  • Flash中常用到的ActionScript控制語句用法
  • JavaScript中的for循環與雙重for循環詳解
  • C語言控制語句之 循環

標簽:許昌 邵陽 赤峰 婁底 巴彥淖爾 馬鞍山 金昌 淘寶邀評

巨人網絡通訊聲明:本文標題《shell腳本中case條件控制語句的一個bug分析》,本文關鍵詞  shell,腳本,中,case,條件,控制,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《shell腳本中case條件控制語句的一個bug分析》相關的同類信息!
  • 本頁收集關于shell腳本中case條件控制語句的一個bug分析的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 南陵县| 武隆县| 裕民县| 修武县| 锡林郭勒盟| 获嘉县| 新巴尔虎右旗| 通化市| 德阳市| 罗平县| 嘉善县| 江北区| 如东县| 灌云县| 永宁县| 松阳县| 安康市| 桓台县| 镇巴县| 衢州市| 保康县| 永仁县| 海城市| 乌兰察布市| 林周县| 固原市| 马公市| 曲松县| 梅河口市| 盱眙县| 南乐县| 苏州市| 五指山市| 安泽县| 上饶市| 石林| 屏东县| 出国| 江油市| 柯坪县| 布尔津县|