Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要脚本方面的帮助。我的脚本是查找挂载是否存在。虽然我希望它仅在我使用 getopts 传递标志时运行。我怎样才能做到这一点?
FS_TO_CHECK="/dev" 如果猫 /proc/mounts | grep $FS_TO_CHECK > /dev/null; 然后 # 文件系统已挂载 别的 # 文件系统没有挂载 菲
传递命令行参数的最简单示例:
$ ./MyScript.sh some_parameter
MyScript.sh:
#!/bin/bash echo $1
这是关于 getopts 的简单教程。