Reviews (0)
For Workflow: External Tool: Numerically adding two values with 'bc'.
External Tool: Numerically adding two valu... (1)
The workflow is an examples for the External Tools / UseCase plugin to integrate external tools. It wraps the "bc" command line calculator. Internally, it executes the following script:
if [ ! -r "$1" ]; then
echo "Cannot read file indicated by first argument '$1'." ;
exit -1 ;
fi ;
if [ ! -r "$2" ];then
echo "Cannot read file indicated by second argument '$1'." ;
exit -1 ;
fi
if [ -x /usr/bin/bc ]; then
...
Created: 2011-05-06 | Last updated: 2011-05-06
Credits: Steffen Möller