mirror of
https://github.com/Brandon-Rozek/website.git
synced 2025-10-10 06:51:13 +00:00
Medium Syndication Data
This commit is contained in:
parent
e8c9b33f2d
commit
79329aae66
13 changed files with 85 additions and 61 deletions
|
@ -1,10 +1,12 @@
|
|||
---
|
||||
title: "Conditional Assignment in Bash"
|
||||
date: 2022-06-19T18:49:47-04:00
|
||||
date: 2022-06-19 18:49:47-04:00
|
||||
draft: false
|
||||
tags: ["Bash"]
|
||||
math: false
|
||||
medium_enabled: true
|
||||
medium_post_id: 8217bfd3af16
|
||||
tags:
|
||||
- Bash
|
||||
title: Conditional Assignment in Bash
|
||||
---
|
||||
|
||||
Many programming languages include an quick way to perform a
|
||||
|
@ -37,4 +39,4 @@ so that if the first condition (`[ $AGE -gt 18 ]`) is false, then it
|
|||
will skip the right side of the AND (`&&`) expression. This is because
|
||||
`False && True` is always `False`. However, `False || True` is equal
|
||||
to `True`, so the language needs to evaluate the right part of an
|
||||
OR (`||`) expression.
|
||||
OR (`||`) expression.
|
Loading…
Add table
Add a link
Reference in a new issue