摘要: 摘自:https://majing.io/posts/10000006301174 ==比较 使用bash检查字符串是否以某些字符开头可以使用==比较 [[ $str == h* ]] 示例 str="hello" if [[ $str == h* ]]; then echo 'yes' fi 有两 阅读全文
posted @ 2020-03-14 13:14 LiuYanYGZ 阅读(20568) 评论(0) 推荐(0) 编辑