Q. How do I add command line arguments in Bash
Ans:
#!/bin/bash if [ $# -ne 2 ] ; then echo -e " please provide correct number of arguments" else # $1 is first argument and $2 is second . echo " sum of $1 + $2 is `expr $1 + $2` " fi
Output
Enjoy :)
If You Liked This Post Please Take a Time To Share This Post
Please give some explanation with commands
ReplyDeleteGreat explanation. please check our website at https://www.techcarbasa.com/
ReplyDelete