过去我没有做太多的bash脚本编写(这可能只是我创建的第四或第五个脚本)。我正在制作的当前脚本将重复一个命令(脚本的参数),直到它完成而不失败。但是在开始重复命令之前,我要检查它是否是实际命令。我该如何检查? 编辑:这是我编写的当前代码(不多)
#!/bin/bash
while true; do #This while loop keeps repeating the first argument (which should be a command) until it finishes without failing
if ($1); then
echo "success"
break;
else
echo "fail"
echo;
fi;
done;