Medium
#/bin/bash
function myFunction
{
echo $1
shift 1
echo $2
}
myFunction $1 $2 $3
What is the result returned when passing '1' '2' '3' as a parameter?
Author: titouan lecampStatus: PublishedQuestion passed 68 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Bash