美文网首页
shell脚本for循环

shell脚本for循环

作者: 骆旺达 | 来源:发表于2021-05-06 18:37 被阅读0次

    1、循环表达式1

    for i in  "cl_acl2014" "cl_res2014" "cl_laptop2014" "cl_res2015" "cl_res2016" "cl_mams"
    do
      $i
    done
    

    输出
    cl_acl2014
    cl_res2014
    cl_laptop2014
    cl_res2015
    cl_res2016
    cl_mams

    2、循环表达式2

    for i in $( seq 1200 1300 )
    do
      ${i}
    done
    

    输出
    1200
    1201
    ...
    1300

    3、辅助项

    CUDA_VISIBLE_DEVICES=0 
    

    控制cuda卡号

    相关文章

      网友评论

          本文标题:shell脚本for循环

          本文链接:https://www.haomeiwen.com/subject/thwddltx.html