Linux Shell 判斷塊設備節點是否存在

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

1、參考文檔:
    1. shell腳本判斷設備節點是否存在
        http://www.360doc.com/content/12/0304/10/1317564_191540155.shtml

2、參數說明:
    -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.文件存在
相關文章
相關標籤/搜索