Help need to cut the first word of a line in text file

Hi All,

I would like help with a script which can get rid of the first work of all lines in text file.

File 1

The name is Scott.

Output : name is Scott

---------- Post updated at 02:38 PM ---------- Previous update was at 02:37 PM ----------

Hi ALL

There is typo error in my previous post.

I would like help with a script which can get rid of the first word of all lines in text file.

Hi.

You could try

cut -d" " -f2- file

Using regexp, replace using nothing start of line all those chars which are not space.
Example done using sed.

sed "s/^[^ ]* //" file

use search -- related thread

the above might be useful.