test指令(使用指令man查询) 功能:检查文件类型,值比较. test的各种参数和使用. test EXPRESSION1 –a EXPRESSION2 当表达式1和表达式2同时为真时值为真 test EXPRESSION1 –o EXPRESSION2 当表达式1或者表达式2为真时值为真 test –n STRING 或者 test STRING 当STRING串的长度不为零时值为真 test –z STRING 当STRING串长度为零时值为真 test STRING1 = ST
名称:expr ### 字串长度 shell>> expr length "this is a test" 14 ### 数字商数 shell>> expr 14 % 9 5 ### 从位置处抓取字串 shell>> expr substr "this is a test" 3 5 is is ### 数字串 only the first character shell>> expr index