I want to set a return value once so it goes into the while loop:
#!/bin/bashwhile [ $? -eq 1 ]do#do something until it returns 0 done
In order to get this working I need to set $? = 1
at the beginning, but that doesn't work.
I want to set a return value once so it goes into the while loop:
#!/bin/bashwhile [ $? -eq 1 ]do#do something until it returns 0 done
In order to get this working I need to set $? = 1
at the beginning, but that doesn't work.