Tag: cut command
Unix / Linux Shell: Get Third Field Separated by Forward Slash (/) Delimiter
in Categories BASH Shell last updated April 29, 2012awk / cut: Skip First Two Fields and Print the Rest of Line
in Categories BASH Shell, Debian / Ubuntu, Linux, RedHat and Friends, UNIX last updated January 21, 2018I would like to skip first two or three fields at the the beginning of a line and print the rest of line. Consider the following input:
This is a test
Giving back more than we take
I want my input file with the following output:
a test
more than we take
How do I printing lines from the nth field using awk under UNIX or Linux operating systems?
This is a test
Giving back more than we take
I want my input file with the following output:
a test
more than we take
How do I printing lines from the nth field using awk under UNIX or Linux operating systems?