以下简单的代码允许:
file不存在在./文件夹的情况下,运行某代码;
file存在的情况下,跳过某代码。
step=$(ls -1 ./|grep "file")
if [[ -z "${step}" ]]; then
printf "\t run whatever this is\n"
else
printf "\t skip step\n"
fi
以下简单的代码允许:
file不存在在./文件夹的情况下,运行某代码;
file存在的情况下,跳过某代码。
step=$(ls -1 ./|grep "file")
if [[ -z "${step}" ]]; then
printf "\t run whatever this is\n"
else
printf "\t skip step\n"
fi