Fix typo in last post

This commit is contained in:
timvisee 2021-03-03 10:38:44 +01:00
parent 08bb9828ec
commit b2669a1658
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ We will just focus on these two logical operators:
## Exit codes
You might wonder how bash considers whether a command succeeded.
This is where [exit codes][exit-status] come in.
When a program exists a numeric status code is returned.
When a program exits a numeric status code is returned.
A value of `0` means the program succeeded, any other value means it failed.
The exit code is normally hidden.