91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

shell的read命令怎么用

發布時間:2022-02-17 15:32:26 來源:億速云 閱讀:254 作者:iii 欄目:開發技術

本篇內容介紹了“shell的read命令怎么用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

shell的read命令怎么用

1、read基本讀取

 1 #!/bin/bash 2 #testing the read command 3
 4 echo -n "Enter you name:"   #echo -n 讓用戶直接在后面輸入 5 read name  #輸入的多個文本將保存在一個變量中 6 echo "Hello $name, welcome to my program."                                      
執行:# ./read.shEnter you name: wangtao
Hello wangtao, welcome to my program.

2、read -p (直接在read命令行指定提示符)

 1 #!/bin/bash 2 #testing the read -p option 3 read -p "Please enter your age: " age
 4 days=$[ $age * 365 ]
 5 echo "That makes you over $days days old!"執行:# ./age.shPlease enter your age: 23
That makes you over 8395 days old!

3、read -p (指定多個變量)

 1 #!/bin/bash 2 # entering multiple variables 3
 4 read -p "Enter your name:" first last
 5 echo "Checking data for $last, $first"執行:# ./read1.shEnter your name: a b
Checking data for b, a

4、read 命令中不指定變量,那么read命名將它收到的任何數據都放在特殊環境變量REPLY中

 1 #!/bin/bash 2 # testing the REPLY environment variable 3
 4 read -p "Enter a number: " 5 factorial=1                        
 6 for (( count=1; count$REPLY; count++ ))
 7 do 8    factorial=$[ $factorial * $count ]   #等號兩端不要有空格 9 done10 echo "The factorial of $REPLY is $factorial"執行:

./read2.sh
Enter a number: 6
The factorial of 6 is 720

5、超時, 等待輸入的秒數(read -t)

 1 #!/bin/bash 2 # timing the data entry 3
 4 if read -t 5 -p "Please enter your name: " name     #記得加-p參數, 直接在read命令行指定提示符 5 then 6     echo "Hello $name, welcome to my script" 7 else 8     echo 9     echo "Sorry, too slow!"10 fi執行:# ./read3.shPlease enter your name:
Sorry, too slow!# ./read3.shPlease enter your name: wang
Hello wang, welcome to my script

6、read命令對輸入的字符判斷

 1 #!/bin/bash 2 # getting just one character of input 3
 4 read -n1 -p "Do you want to continue [Y/N]? " answer
 5 case $answer in 6 Y | y) echo 7        echo "fine, continue on...";;
 8 N | n) echo 9        echo "OK, goodbye"10        exit;;
11 esac  
執行:# ./read4.shDo you want to continue [Y/N]? y
fine, continue on...

./read4.sh
Do you want to continue [Y/N]? n
OK, goodbye

7、隱藏方式讀取(read -s)

 1 #!/bin/bash 2 # hiding input data from the monitor 3
 4 read -s -p "Enter your passwd: " pass   #-s 參數使得read讀入的字符隱藏 5 echo 6 echo "Is your passwd readlly $pass?"~                                          
執行:# ./read5.shEnter your passwd:
Is your passwd readlly osfile@206?

8、從文本中讀取

 1 #!/bin/bash 2 # reading data from a file 3
 4 count=1
 5 cat test | while read line
 6 do 7    echo "Line $count: $line" 8    count=$[ $count + 1 ]
 9 done10 echo "Finished processing the file"執行:

./read6.sh
Line 1: The quick brown dog jumps over the lazy fox.
Line 2: This is a test, this is only a test.
Line 3: O Romeo, Romeo! Wherefore art thou Romeo?
Finished processing the file

“shell的read命令怎么用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

合江县| 湘乡市| 民丰县| 宿松县| 神木县| 双江| 宁阳县| 双辽市| 平昌县| 滨州市| 炉霍县| 武清区| 金寨县| 昭通市| 静宁县| 察哈| 灌云县| 屯昌县| 葫芦岛市| 淮南市| 湘潭县| 湘潭市| 微山县| 桐庐县| 崇礼县| 台东市| 曲靖市| 枣阳市| 东乌珠穆沁旗| 镇平县| 龙江县| 莱芜市| 拜泉县| 都匀市| 霞浦县| 客服| 广东省| 阿克| 枣庄市| 罗城| 塘沽区|