shell script脚本传参小结

前端之家收集整理的这篇文章主要介绍了shell script脚本传参小结前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

简单东西, 记录一下:

#!/bin/bash

if [ $# -ne 1 ];     # 参数个数判断
then
	echo "error,usage: $0 20171025"
	exit 1;
fi

t1=$(date -d $1 +%s)   # 时间戳
echo $t1
执行:
xxxxxx ./a.sh 
error,usage: ./a.sh 20171025
xxxxxx ./a.sh 20171025
1508860800
以后写shell script,不要总是这这那那的, 丑! 原文链接:https://www.f2er.com/bash/389953.html

猜你在找的Bash相关文章