Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
running - ./bashfile.sh a 1 1
#!/bin/bash addit () { echo $(($2 + $3)) } if [ $1 == a ] then addit fi
produces
syntax error: operand expected (error token is "+ ")
What is causing this problem?
Thanks
addit
addit $1 $2
$2
$3
You should call your addit function in the script, something like: addit $1 $2, after the definition of addit.
#!/bin/bash addit () { echo $(($1 + $2)) } addit $1 $2
Running:
chmod +x bashfile.sh ./bashfile 1 1 2
Add a comment
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.
Start asking to get answers
Find the answer to your question by asking.
Explore related questions
See similar questions with these tags.
additfunction in the script, something like:addit $1 $2, after the definition ofaddit.additsee are those you pass to the function, not those that are passed to the script. Calladditwith$2and$3as I show you in my answer.