On Wed, 1 Aug 2012 22:49:05 -0400, Steven Blatchford wrote: > > I wanted to know how you use awk to get the same output as > "cut -d' ' -f3-" >
This can be done on multiple ways in awk, here is one example (a bit extreme): awk '{$1=$2=""; $0=substr($0, 3)}1' -- Paul Onyschuk