Bash Scripting - Functions
What will be the output of this script?
func() {
echo "Hi"
return 4
}
func
echo $?func() {
echo "Hi"
return 4
}
func
echo $?echo $? prints the last return status, which is 4.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions