Update link of mentioned user to point to specific comment

This commit is contained in:
timvisee 2021-03-02 13:59:57 +01:00
parent c1139f3e9c
commit 4eea3090d6
No known key found for this signature in database
GPG Key ID: B8DB720BC383E172
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ it is empty, so you won't even need conditionals.
Most other shells support similar operators. [fish][fish] uses `; and` and `;
or`, but now [supports][fish-and-and] `&&` and `||` as well in modern versions.
`$_` (or `Alt+.`) is your last used argument (thanks [@Diti](https://lobste.rs/u/Diti)). For example:
`$_` (or `Alt+.`) is your last used argument (thanks [@Diti](https://lobste.rs/s/nao13f/elegant_bash_conditionals#c_brp038)). For example:
```bash
test -f FILE && source $_ || echo "FILE does not exist" >&2