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 7798041
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T23:52:55+00:00 2026-06-01T23:52:55+00:00

I wonder if there is any posibility to sort a text file by columns.

  • 0

I wonder if there is any posibility to sort a text file by columns. For example

I have aux1.txt with rows like this

Name SecondName Grade

In shell i can do this

sort -r -k 3 aux1  

It sorts the file by the 3rd column(grade).

In batch

sort /+3 < aux1.txt

sorts the file after the 3rd letter.

I read the sort manual for batch but no results.

  • 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-01T23:52:57+00:00Added an answer on June 1, 2026 at 11:52 pm

    You could write your own sort-wrapper with a batch file.

    You only need to reorder the columns into a temporary file,
    sort it and order it back. (nearly obvious)

    REM *** Get the desired colum and place it as first column in the temporary file
    setlocal DisableDelayedExpansion
    (
        for /F "tokens=1-3 delims= " %%A in (aux1.txt) DO (
            set "par1=%%A"
            set "par2=%%B"
            set "par3=%%C"
            setlocal EnableDelayedExpansion
            echo(!par2! !par1! !par2! !par3!
            endlocal
      )
    ) > aux1.txt.tmp
    
    REM ** Now sort the first colum, but echo only the rest of the line
    for /F "usebackq tokens=1,* delims= " %%A in (`sort /r aux1.txt.tmp`) DO (
        echo(%%B
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I wonder if there is any trick to solve this problem. I have my
I wonder if there's any way something like this would be possible for value
I wonder if there is any way to generate culture neutral CSV file or
I wonder if there any better ideas to solve the problem below, I have
i'm using spring+tapestry for authenticate webuser. I wonder is there any technique i can
I wonder whether there is any automatic way of determining (at least roughly) the
I wonder if there are any game engine written in Scala or easily accesible
I wonder if there's any way to do a while loop in django (I
I wonder if there are any good practices for addressing Spring controllers in JSP.
I wonder if there's any tool/website where I can plot some run times as

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.