Horje
bash tokenize string Code Example
bash tokenize string
For any delimiters, like ';'

$ string="john;is;17;years;old"
$ IFS=';' tokens=( $string )
$ echo ${tokens[*]}
bash tokenize string
For Space delimiter

$ string="john is 17 years old"
$ tokens=( $string )
$ echo ${tokens[*]}




Shell

Related
suse linux update Code Example suse linux update Code Example
rename all file extention terminal Code Example rename all file extention terminal Code Example
cli echo to file Code Example cli echo to file Code Example
git push to my work Code Example git push to my work Code Example
disable swap kubernetes ansible Code Example disable swap kubernetes ansible Code Example

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