How to run node script from BASH?
Below shell script is running a node script, which gets an object from package.json, updates the app version and writes it back to the package.json using node API. // foo.sh node <<EOF var fs...
@ tutorialhorizon
Below shell script is running a node script, which gets an object from package.json, updates the app version and writes it back to the package.json using node API. // foo.sh node <<EOF var fs...
In Universal Windows Platform there is a DebugView Tool which allows you to see the debug logs of your application in real time. You can save these logs for future debugging as well. Download...
To run any script you need to have executable write of that script. chmod 755 ./script_name.sh chmod 755 – gives you full permission. It gives only read and execute permission to everyone else.
#!/bin/bash function foo() { # Hello echo “First Argument = $1” # World echo “Second Argument = $2” } foo Hello World
git show COMMIT Further reading: git show
Recent Comments