Is there a more graceful way to do this (bourne shell)?
IsThereAnyApplesLeft
applesLeft=$?
Normally in c or java I would do:
applesLeft=IsThereAnyApplesLeft
|
Is there a more graceful way to do this (bourne shell)?
Normally in c or java I would do:
| ||||
|
feedback
|
|
Exit status is normally used implicit like this:
| |||||
feedback
|
|
Try:
And yes, you've to use | |||
feedback
|
|
What's not graceful about According to the Advanced Bash Scripting Guide, there's no other way to obtain the exit code besides | |||
feedback
|
|
The two pieces of code are not directly comparable. Your bash example is creating a subprocess to run an executable called "IsThereAnyApplesLeft", waiting for that subprocess to finish and storing the exit code of the subprocess in the variable $? so that you can examine it and act accordingly. That's actually quite a complex interaction and to do the same thing in C would require a considerable amount of code. You'd have to fork() a subprocess, have the parent wait4pid() on the child's pid, while at the same time in the child calling execl() on the file "IsThereAnyApplesLeft" to make it run. One of the benefits of using a shell scripting language is that it hides this sort of stuff from you. By comparison, your C code snippet is just calling a C function and storing the result in a local variable. That would look like this in bash:
| |||
|
feedback
|