How would I remove the first word from each line of text in a stream? i.e.
$cat myfile some text 1 some text 2 some text 3
what I want i
run this sed "s/^some\s//g" myfile you even don't need to use a pipe
sed "s/^some\s//g" myfile