摘要: 判断参数是否为空#!/bin/sh if [ ! -n "$1" ]; then echo "IS NULL" else echo "NOT NULL" fi 阅读全文
posted @ 2019-07-25 04:21 TonyHuang123 阅读(93) 评论(0) 推荐(0) 编辑