shell脚本中的getopts和IFS是什么意思?
我正在学习 shell 脚本,有人可以用一些例子解释一下什么是 getopts 和 IFS 吗?
I am learning shell scripting so can someone please explain with some examples on what is getopts and IFS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
getopts
是用于解析传递的参数的工具。IFS
(内部字段分隔符
)是决定 bash 如何区分单词的变量。无意冒犯,只是一个简单的 Google 搜索会给你答案&样品:)
希望这有帮助!
getopts
is the tool used to parse arguments passed.IFS
(Internal Field Separator
) is the variable which determines how bash distinguishes words.No offense but a simple Google search would have given you the answers & samples :)
Hope this helps!