The UNIX and Linux Forums
>
Top Forums
>
Shell Programming and Scripting
awk, ignore first x number of lines.
.
User Name
Remember Me?
Password
google unix.com
Forums
Register
Forum Rules
Links
Albums
FAQ
Members List
Calendar
Search
Today's Posts
Mark Forums Read
Thread
:
awk, ignore first x number of lines.
View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
#
4
(
permalink
)
05-19-2008
Klashxx
HP-UX/Linux/Oracle
Join Date: Feb 2006
Location: Almerķa, Spain
Posts: 393
Quote:
Originally Posted by
elthox
Maybe like this:
cat -n something| awk '$1>11 && (the conditions you like)
cat -n adds to the first coloumn the number of line.
Regards
OR:
Code:
awk 'NR>11' file
Klashxx
View Public Profile
Find all posts by Klashxx
Find Klashxx's past nominations received
Find Klashxx's present nominations given