Medium Syndication Data

This commit is contained in:
Brandon Rozek 2023-02-09 20:19:30 -05:00
parent e8c9b33f2d
commit 79329aae66
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
13 changed files with 85 additions and 61 deletions

View file

@ -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.