mirror of
https://github.com/onceupon/Bash-Oneliner.git
synced 2024-11-22 21:07:00 +00:00
add variable
get the length of variable
This commit is contained in:
parent
b310c4acbe
commit
430cfb08ef
@ -826,6 +826,13 @@ for line in $(cat myfile); do echo $line; read -n1; done
|
|||||||
#'bar'
|
#'bar'
|
||||||
# double/single quotes around single quotes make the inner single quotes expand variables
|
# double/single quotes around single quotes make the inner single quotes expand variables
|
||||||
```
|
```
|
||||||
|
##### get the length of variable
|
||||||
|
```bash
|
||||||
|
var="some string"
|
||||||
|
echo ${#var}
|
||||||
|
# 11
|
||||||
|
```
|
||||||
|
|
||||||
##### replacement (e.g. replace 'a' with ',')
|
##### replacement (e.g. replace 'a' with ',')
|
||||||
```bash
|
```bash
|
||||||
{i/a/,}
|
{i/a/,}
|
||||||
|
Loading…
Reference in New Issue
Block a user