Skip to content

Instantly share code, notes, and snippets.

@joshbc
Created November 6, 2014 11:06
Show Gist options
  • Save joshbc/6bfc24166591e3075bad to your computer and use it in GitHub Desktop.
Save joshbc/6bfc24166591e3075bad to your computer and use it in GitHub Desktop.
Explode String Shell Script
string="abc@hotmail.com;xyz@gmail.com;uvw@yahoo.com"
str1=${string%%;*}
str3=${string##*;}
temp=${string#$str1;}
str2=${temp#;$str3}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment