awk + Need to print everything (all rest fields) except $1 and $2

awk, filtering

Solution

Well, given your data, cut should be sufficient:

cut -d\  -f3- infile

Problem

I have the following file and I need to print everything except `$1` and `$2` by `awk` File: ``` INFORMATION DATA 12 33 55 33 66 43 INFORMATION DATA 45 76 44 66 77 33 INFORMATION DATA 77 83 56 77 88 22 ... ``` the desirable output: ``` 12 33 55 33 66 43 45 76 44 66 77 33 77 83 56 77 88 22 ... ```

Original source