Linux shell 指令碼判斷ttyUSB裝置節點是否存在__Linux

來源:互聯網
上載者:User

使用shell判斷裝置節點是否存在,例如插入4G Modem Sierra模組到Linux系統後,會產生一系列的TTY裝置,一般會有一個可以收發AT命令。例如裝置節點為 /dev/ttyUSB2 的字元裝置。


判斷指令碼如下:


wait_for_ttyUSB2() {
while true
do
echo "dev=$TTY2"
if [ -c "$TTY2" ]; then
echo "$TTY2 is exist"
break
fi
echo "wait for $TTY2 ready, and check again after 1s"
sleep 1s
done
}


下面列出了與檔案類型或者裝置類型相對應的判斷條件。

    * -b file = True if the file exists and is block special file.     如果該檔案存在並且是塊特殊檔案。
    * -c file = True if the file exists and is character special file.如果該檔案存在並且是字元特殊檔案
    * -d file = True if the file exists and is a directory.   如果該檔案存在並且是一個目錄。 
    * -e file = True if the file exists.         如果該檔案存在 
    * -f file = True if the file exists and is a regular file   如果該檔案存在並且是一個普通檔案 
    * -g file = True if the file exists and the set-group-id bit is set.   如果該檔案存在並且設定了組ID位。
    * -k file = True if the files’ “sticky” bit is set.    如果檔案的sticky “粘性”位被設定。 
    * -L file = True if the file exists and is a symbolic link.   該檔案存在並且是一個符號連結。
    * -p file = True if the file exists and is a named pipe.   該檔案存在並且是一個具名管道。 
    * -r file = True if the file exists and is readable.   檔案存在並且是可讀的 
    * -s file = True if the file exists and its size is greater than zero. 檔案存在,它的大小是大於零
    * -S file = True if the file exists and is a socket.     檔案存在並且是一個通訊端 
    * -t fd = True if the file descriptor is opened on a terminal.   檔案描述符是在一個終端上開啟的
    * -u file = True if the file exists and its set-user-id bit is set. 檔案存在,它的設定使用者ID位被設定了
    * -w file = True if the file exists and is writable.     檔案存在並且可寫 
    * -x file = True if the file exists and is executable.     檔案存在並且是可執行檔 
    * -O file = True if the file exists and is owned by the effective user id.    檔案存在並且是所擁有的有效使用者ID
    * -G file = True if the file exists and is owned by the effective group id. 檔案存在並且擁有有效gruop id。

參照上面的說明,我們要判斷一個檔案存在而不管其類型,那麼可以使用 -e,如果要同時檢查其類型,那麼我們可以使用相對應的判斷條件。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.