man cut and other simple yet useful unix bits

Instead of just reading the man file, you could read this post about cut! Printing columns ('fields') n to m (inclusive) from a file: cut -d [delimiter] -f n-m filename Thus, removing the first n-1 fields from a file: cut -d [delimiter] -f n- filename [delimiter] is automatically a …