Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2013
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    how to get every 4th line from a file?

    Hi guys,
    I have a text file ..
    I want to get every 4th line into a new file, but I want the line count will start from the 2th line.
    For example for file with 20 lines, i want line numbers:
    2
    6
    10
    14
    18

    Any simple ideas?

    Thanks,
    Pap




  2. #2
    Join Date
    May 2012
    Location
    West Byfleet, Surrey, UK
    Posts
    21
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Lightbulb Extracting lines from file

    Quote Originally Posted by papori View Post
    Hi guys,
    I have a text file ..
    I want to get every 4th line into a new file, but I want the line count will start from the 2th line.
    For example for file with 20 lines, i want line numbers:
    2
    6
    10
    14
    18

    Any simple ideas?

    Thanks,
    Pap
    Code:
    awk '{if (! ((FNR + 2) % 4)) { print }}' myfile > newfile
    Explanation: Parse file "myfile" - IF ((current line number in file plus 2) modulo 4) is NOT TRUE print current line and redirect output to file "newfile"

    HTH

  3. #3
    Join Date
    Jan 2013
    Posts
    6
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0
    Quote Originally Posted by hackinjack View Post
    Code:
    awk '{if (! ((FNR + 2) % 4)) { print }}' myfile > newfile
    Explanation: Parse file "myfile" - IF ((current line number in file plus 2) modulo 4) is NOT TRUE print current line and redirect output to file "newfile"

    HTH
    That's help!

 

 

Similar Threads

  1. Way to append command line history to text file?
    By red in forum General Linux
    Replies: 3
    Last Post: 01-03-2013, 12:46 PM
  2. Replies: 0
    Last Post: 04-02-2012, 09:03 PM
  3. KDE Commit-Digest for 4th March 2012
    By News in forum Linux News
    Replies: 0
    Last Post: 03-17-2012, 10:56 PM
  4. Help with Banshee and iPod Touch 4th Generation.
    By XXXRoyalMarineXXX in forum Linux Audio / Video
    Replies: 5
    Last Post: 03-16-2012, 03:29 PM
  5. KDE Commit-Digest for 4th December 2011
    By Fred in forum Linux News
    Replies: 0
    Last Post: 12-30-2011, 08:24 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
           








Check out Linux Central for Linux software and other goodies!





» Stats

Members: 3,580
Threads: 3,920
Posts: 9,446
Top Poster: Fred (1,486)
Welcome to our newest member, SLW210

» Links



Powered by vBadvanced CMPS