1. 程式人生 > >Linux Shell 判斷塊裝置節點是否存在

Linux Shell 判斷塊裝置節點是否存在

/*************************************************************************
 *                   Linux Shell 判斷塊裝置節點是否存在
 * 說明:
 *     能牌問shell指令碼-f不能判斷mmc裝置節點的問題,查了一下資料,發現不能
 * 使用-f來判斷,要使用-e或者-b來判斷才行。
 *
 *                                      2017-1-17 深圳 南山平山村 曾劍鋒
 ************************************************************************/

一、參考文件:
    1. shell指令碼判斷裝置節點是否存在
        http://www.360doc.com/content/12/0304/10/1317564_191540155.shtml

二、引數說明:
    -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.檔案存在且設定了組標記位
    -k file = True if the files' "sticky" bit is set.
    -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.檔案存在