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

  • Home
  • SEARCH
  • 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 5991009
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T23:19:33+00:00 2026-05-22T23:19:33+00:00

I have some huge log files I need to sort. All entries have a

  • 0

I have some huge log files I need to sort. All entries have a 32 bit hex number which is the sort key I want to use.
some entries are one liners like

bla bla bla  0x97860afa bla bla  

others are a bit more complex, start with the same type of line above and expand to a block of lines marked by curly brackets like the example below. In this case the entire block has to move to the position defined by the hex nbr. Block example-

 bla bla bla  0x97860afc bla bla  
     bla bla {  
         blabla  
            bla bla {  
                bla     
            }  
        }  

I can probably figure it out but maybe there is a simple perl or awk solution that will save me 1/2 day.


Transferring comments from OP:

Indentation can be space or tab, I can enhance that on any proposed solution, I think that Brian summarizes well: Specifically, do you want to sort “items” which are defined as a chunk of text that starts with a line containing a “0xNNNNNNNN”, and contains everything up to (but not including) the next line which contains a “0xNNNNNNNN” (where the N’s change, of course). No lines interspersed.

  • 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-05-22T23:19:34+00:00Added an answer on May 22, 2026 at 11:19 pm

    Something like this might work (Not tested):

    my $line;
    my $lastkey;
    my %data;
    while($line = <>) {
        chomp $line;
        if ($line =~ /\b(0x\p{AHex}{8})\b/) {
            # Begin a new entry
            my $unique_key = $1 . $.; # cred to [Brian Gerard][1] for uniqueness
            $data{$1} = $line;
            $lastkey = $unique_key;
        } else {
            # Continue an old entry
            $data{$lastkey} .= $line;
        }
    }
    
    print $data{$_}, "\n" for (sort { $a <=> $b } keys %data);
    

    The problem is that you said “huge” log files, so storing the file in memory will probably be inefficient. However, if you want to sort it, I suspect you’re going to need to do that.

    If storing in memory is not an option, you can always just print the data to a file instead, with a format that will allow you to sort it by some other means.

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

Sidebar

Related Questions

I have some HUGE log files (50Mb; ~500K lines) I need to start filtering
I have some huge layouts which I need to free from the memory in
i have some huge js files and there are some texts/messages/... which are output
I have some huge binary files which I'm currently reading using memory mapping on
I have large log files which contains timestamps every one second.what I need is
One of the huge benefits in languages that have some sort of reflection/introspecition is
I have a huge file that has some lines that need to have a
I have a log file on the server which I want to check for
I have a huge application and at some point, when a redirect is involved
I have a huge matrix that I divided it into some sub matrices and

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.