I am trying to write a while loop within one while loop in bash , the syntax of the second while doesn't get highlighted . Is there any special syntax for using this ?
while [ "ka" = $name ]
do
while [ "ka" = $name ] //this while is not highlighted
do
done
done