Awk
ph
- [gnu awk users guide]
- [tutorial] one long html
$ # print all but first two columns
$ # http://stackoverflow.com/a/2961994/766330
$ cat somefile | awk '{$1=$2=""; print $0}'
$ # print all but first two columns
$ # http://stackoverflow.com/a/2961994/766330
$ cat somefile | awk '{$1=$2=""; print $0}'