无论如何我无法在windows中使用厨师在cygwin中执行shell脚本无论如何都要这样做吗?
答案 0 :(得分:0)
您可以使用script
资源并将interpreter
属性设置为bash
。只需确保命令bash
在您的路径上。
script "test_module" do
interpreter "bash"
code <<-EOH
echo 'Starting the script...'
cp C:/Temp/testfile.txt C:/Temp/testfile2.txt
EOH
end
这是在Windows 10上测试的。