If you want to extract from the nth token to the end of the line, following is how you can do that with awk:
Given a source file with the following:
line1 -- 01 0011 1
line2 -- 01 0011 2
line3 -- 01 0011 3
line4 -- 01 0011 4
line5 -- 01 0011 5
line6 -- 01 0011 6
line7 -- 01 0011 7
line8 -- 01 0011 8
line9 -- 01 0011 9
line10 -- 01 0011 10
If you want remove the 1st, 2nd, and 3rd items from the list, you can use awk to set those fields to an empty value as follows
awk '{$1=$2=$3=""; print $0}' test.out
Which will result in:
0011 1
0011 2
0011 3
0011 4
0011 5
0011 6
0011 7
0011 8
0011 9
0011 10