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
Here is a solution using awk
awk
awk '{$1= ""; print $0}' yourfile