custom_cli/bash_info.md

21 lines
140 B
Bash
Raw Permalink Normal View History

2024-11-26 18:45:53 +00:00
# invalid
```bash
$a="b"
a = "b"
a= "b"
a ="b"
```
# valid
```bash
a="b"
a=b
```
# examples
```bash
a="b c d"
echo $a
# output: b c d
```