gpt4 book ai didi

bash - 从 bash 脚本调用 grunt.js 时出现问题

转载 作者:太空宇宙 更新时间:2023-11-03 23:10:38 24 4
gpt4 key购买 nike

当我从与 grunt.js 相同的目录调用 grunt (https://github.com/gruntjs/grunt) 时,它工作正常。

但是,如果我尝试制作名为“build.sh”的 bash 脚本:

#!/bin/bash
`grunt grunt.js`

当我调用 ./build.sh 时,它给出以下错误:

./build.sh: line 2: Running: command not found

我尝试指定 grunt 的完整路径,还尝试使用配置指定 grunt.js 文件的完整路径,但它不想工作:(

我缺少什么?

最佳答案

您不需要 ` 标记,因为这意味着“替换命令的输出”。你想要的只是

#!/bin/bash
grunt grunt.js

或者,exec grunt grunt.js

关于bash - 从 bash 脚本调用 grunt.js 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13322193/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com