标签: bash
我想按如下方式运行bash脚本
#!/bin/sh for model in (`cat list.txt`); do echo $model ..... ...... done
我使用命令bash script.sh运行代码。但是,我仍然收到错误
'cript.sh: line 3: `for model in (`cat list.txt`); do
请告诉我如何运行它。