shell 改循环怎么写呢?

改成循环该怎么写

if [[ -d "01" || -d "1" ]]; then
  node test/check01.js;
fi

if [[ -d "02" || -d "2" ]]; then
  node test/check02.js;
fi
if [[ -d "03" || -d "3" ]]; then
  node test/check03.js;
fi
....
阅读 1.5k
1 个回答
for i in `seq 1 100`; do
    # 个位数补零
    withZero=`printf "%02d" $i`
    if [[ -d $i || -d $withZero ]]; then
        node test/check${withZero}.js;
    fi
done

你描述的没有太详细,根据你代码的意思来看,可以试试这段代码。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进