properly built manuscript

This commit is contained in:
CoolOppo 2018-06-28 04:40:27 -04:00
parent dd9a4ee438
commit 5f0c65e7a3
3 changed files with 5 additions and 4 deletions

View File

@ -366,7 +366,7 @@ if [[ "$var" == *sub_string ]]; then
printf '%s\n' "var ends with sub_string."
fi
# Inverse (var does not start with sub_string).
# Inverse (var does not end with sub_string).
if [[ "$var" != *sub_string ]]; then
printf '%s\n' "var does not end with sub_string."
fi

View File

@ -32,8 +32,8 @@
| Expression | What does it do? |
| ---------- | ---------------- |
| `file -ef file2` | If both files refer to the same inode and device numbers.
| `file -nt file2` | If `file` is newer than `file2` (*uses modification ime*) or `file` exists and `file2` does not.
| `file -ot file2` | If `file` is older than `file2` (*uses modification ime*) or `file2` exists and `file` does not.
| `file -nt file2` | If `file` is newer than `file2` (*uses modification time*) or `file` exists and `file2` does not.
| `file -ot file2` | If `file` is older than `file2` (*uses modification time*) or `file2` exists and `file` does not.
## Variable Conditionals

View File

@ -188,7 +188,7 @@ command ls
## Run a command in the background
This will run the given command and keep it running even after the terminal is closed.
This will run the given command and keep it running, even after the terminal or SSH connection is terminated. All output is ignored.
```sh
bkr() {
@ -199,3 +199,4 @@ bkr ./some_script.sh # some_script.sh is now running in the background
```
<!-- CHAPTER END -->