Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When i call grunt (https://github.com/gruntjs/grunt), from same directory with grunt.js it is working ok.

But, if i try to make such bash script called "build.sh":

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

and when i call ./build.sh it gives following error:

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

I tried to specify full path to grunt, also tried to specify full path to grunt.js file with config, but it don't want to work :(

What i'm missing?

share|improve this question

1 Answer

up vote 2 down vote accepted

You don't need the ` marks, because that means "substitute the output of the command". All you want is

#!/bin/bash
grunt grunt.js

Alternatively, exec grunt grunt.js.

share|improve this answer
You are right! But.. why? – true ツ Nov 12 '12 at 21:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.