Skip to content

Instantly share code, notes, and snippets.

View jasodeep's full-sized avatar
👾
lorem ipsum

Jasodeep Chatterjee jasodeep

👾
lorem ipsum
  • Zoom
  • Bangalore
View GitHub Profile
@jasodeep
jasodeep / gist:e56866c3807aab729ce2308440095afd
Created November 2, 2018 13:08 — forked from joshbc/gist:6bfc24166591e3075bad
Explode String Shell Script
string="abc@hotmail.com;xyz@gmail.com;uvw@yahoo.com"
str1=${string%%;*}
str3=${string##*;}
temp=${string#$str1;}
str2=${temp#;$str3}