Horje
bash split string into array 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//;/ })
bash split string into array
IFS=', ' read -r -a array <<< "$string"




Shell

Related
mongodb install ubuntu 20.04 Code Example mongodb install ubuntu 20.04 Code Example
split string and create array bash Code Example split string and create array bash Code Example
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

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