Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8993445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T23:11:50+00:00 2026-06-15T23:11:50+00:00

I have to remove the first 2 headers of many files and replace them

  • 0

I have to remove the first 2 headers of many files and replace them with another one. As I am new to Python and programming, I have been using the following code

import glob
import os
list_of_files = glob.glob('./*.txt')
for file_name in list_of_files:
    os.system('sed "1,2d" %s | sort -k1 > %s.sort' %(file_name,file_name))
    os.system ('cat header file %s.sort > %s.header' %(file_name,file_name))

which works. However I think there should be a better way of getting this done. Also I am unnecessarily making an extra file *.sort which I don’t require.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T23:11:51+00:00Added an answer on June 15, 2026 at 11:11 pm

    Believe it or not, you can do this pretty easily in pure python:

    import itertools
    with open(filename) as fin:
        ilines = itertools.islice(fin, 2, None) #this throws away the first 2 lines
        lines = sorted(ilines, key=lambda x: x.split()[0])  #sort lexicographically on first column
    
    with open('header') as header, open('%s.header'%filename) as fout:
        fout.writelines(header) #write the header
        fout.writelines(lines) #write the data
    

    You’re done. Take a slightly longer lunch break because python helps you save time* :-).

    *(Alternatively, spend some of your long lunch learning more of the cool things python has to offer!)

    Happy Coding!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have 3 php files. The first (connexion.php) one contains a function I use
I am having some problem using the clone function in jQuery. I have been
First post, have found many answers here, so hopes are high. The problem: Google
I'm completely new to win32. I have been working on it the last 48
I'm using Python 3. I've written two programs. One loops through a csv file
I'm looking to remove duplicate phrases from any give string. Example: My_First_Post_My_First_Post.htm Would have
To access a remote database, I first have to use a program called Shrew
I have an activity which needs to make two remote server calls. The first
I have remove some item from the list of the BxSlider carousel. But when
I have to remove quotes from a relatively large text file. I have looked

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.