I have some troubles removing the string between the first space \s and the first tab \t of  a text file (the tab should be kept):
sample input:
col1_frame1 unimportant    a b    c
expected output for sample:
col1_frame    a b    c
I tried with sed 's/ .*\t/\t/' but I got a wrong output: 
my output for sample (using previous sed):
col1_frame    c
