Let's say I have a bash script that calls a node script. I've tried to do it like this:
b.sh file:
#!/bin/bash
v=$(node app.js)
echo "$v"
app.js file:
#!/usr/bin/env node
function f() {
return "test";
}
return f();
How do I access the value returned by the node script ("test") from my bash script ?
testis returned to themainand it isn't printed to the output, so here is nothing to capture... You need output the returned value...