Horje
split string and create array bash Code Example
split string and create array bash
my_array=($(echo $string | tr "," "\n"))
split bash string
IN="bla@some.com;john@home.com"
arrIN=(${IN//;/ })
split string and create array bash
IFS=', ' read -r -a array <<< "$string"




Shell

Related
how to delete a folder in github Code Example how to delete a folder in github Code Example
"What is the Git command to view all the changes since the last commit" Code Example "What is the Git command to view all the changes since the last commit" Code Example
setting default terminal Code Example setting default terminal Code Example
cli kill what is listening on port Code Example cli kill what is listening on port Code Example
git basic commands Code Example git basic commands Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11