Hi,
Is there any way to echieve this. In my shell script i have a procedure
Code:
display_yes()
{
echo $user
}
Then i call the procedure as below
Code:
user='test'
display_yes
How can i convert my procedure to accept arguments, and then when i call my procedure i can pass the arguments,
any help is very much appreicated