til/bash-scripting/splitting-a-string-with-delimiter.md

9 lines
128 B
Markdown

You can split a string with `cut`:
```bash
foo="hello-world-bye-world"
bar=$(echo $foo | cut -d"-" -f2)
echo $bar
# world
```