问答详情
源自:2-1 Shell脚本之场景控制脚本(上)

${script_file}的结果

为什么执行${script_file} 显示的是ls -I "monitor_man.sh" ./ 这条字符串啊

http://img.mukewang.com/5979cde10001432305400060.jpg

提问者:丿Lemon丶柠檬 2017-07-27 19:26

个回答

  • 我是谁的友人A
    2018-06-05 00:12:32

    这里用的不是单引号而是反单引号,键盘上波浪号那个键。

    或者你可以改成for script_file in $(ls -I "monitor_man.sh" ./)

  • 慕少9400517
    2017-08-02 09:59:17

    你确定你的   for script_file in `ls -I "total.sh" ./`   是这样写的吗