You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could implement && and || operators the same way we would implement pipes and redirection.
Commands are already designed to give us the exit codes which we can use for the logic operations.
Another thing we could implement is the ; to separate lines.
However, I don't think we should try implementing more complex scripting features (like loops and functions).
The text was updated successfully, but these errors were encountered:
We could implement
&&
and||
operators the same way we would implement pipes and redirection.Commands are already designed to give us the exit codes which we can use for the logic operations.
Another thing we could implement is the
;
to separate lines.However, I don't think we should try implementing more complex scripting features (like loops and functions).
The text was updated successfully, but these errors were encountered: