bash脚本参数

前端之家收集整理的这篇文章主要介绍了bash脚本参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > How do I parse command line arguments in Bash?27个
我需要写一个bash脚本,并希望解析格式的无序参数:
scriptname --param1 <string> --param2 <string> --param3 <date>

有没有一个简单的方法来完成这个,或者我几乎坚持$1,$2,$3?

你要 getopts.
原文链接:https://www.f2er.com/bash/383857.html

猜你在找的Bash相关文章