我目前正在尝试完成这个 shell 脚本,用于我班级的一个小项目。我不知道该如何解决这个问题。以下是提示和我目前所做的事情...

最初给出的提示

我目前所拥有的...

#!/bin/bash
if [ $1="-f" ]
then
        Filename=$1
        shift
        shift
elif=[ $1="-a" ]
then
        Adding=$1
        shift
then
fi

答案1

最简单的方法是使用 getopts。

您可以在此处找到一个例子: 在 bash 中使用 getopts 的示例

干杯

相关内容