bash
清萝卜头
做快乐的事,做幸福的人
展开
-
bash 字符串截取、替换及数组
语法格式 说明 ${string: start :length} 从 string 字符串的左边第 start 个字符开始,向右截取 length 个字符。 ${string: start} 从 string 字符串的左边第 start 个字符开始截取,直到最后。 ${string: 0-start :length} 从 string 字符串的右边第 start 个字符开始,向右截取 length 个字符。 ${string: 0-start} 从 string原创 2020-05-18 13:31:54 · 919 阅读 · 0 评论 -
bash 空值判断
1. 直接判断name=if [ $name ];thenecho "not null"elseecho "is null"else> fi# is null2. 转换成字符串name=if [ "$name"="" ];thenecho "is null"elseecho "not null"fi#is null3. -n:不等于name=if [ ! -n "$name" ];thenecho "is null"elseecho "no..原创 2020-05-18 12:57:39 · 4672 阅读 · 0 评论