Split a line based on : using sed

Hi,

i have a file say file1 having following data

/abc/def:ghi/jkl/ some other text

Now i want to extract only ghi/jkl/using sed, can some one please help me.

Thanks
Sarbjit

echo '/abc/def:ghi/jkl/' | sed 's/.*:\(.*\)/\1/'
sed 's/[^:]*://' infile

---------- Post updated at 07:47 ---------- Previous update was at 07:29 ----------

Oops you wanted "some other text" removed

sed 's/[^:]*://;s/ .*//' infile

-or-

sed -e 's/[^:]*://' -e 's/ .*//' infile

-or-

sed 's/[^:]*:\([^ ]*\) .*/\1/' infile

-or-

awk -F"[: ]" '{print $2}' infile