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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:04:17+00:00 2026-06-02T00:04:17+00:00

I would like to format text content that I am getting as a stdout

  • 0

I would like to format text content that I am getting as a stdout stream using column, but I fail. For instance, using a single line, all works fine:

$ echo "1 12 123 1234 1 12 123 1234 " | column -t
1  12  123  1234  1  12  123  1234

.. however, if I try to simulate an “endless” stream:

$ while true; do echo "1 12 123 1234 1 12 123 1234 "; sleep 1; done | column -t
^C

… there is simply no response, until one exits with Ctrl-C.

(Note that the while thing is just meant to simulate reading an endless stream from a device, as in ‘cat /dev/ttyUSB0‘)

This leads me to believe that, even if column by default should accept standard input, it needs a “complete” and finished file (that is, with a determined file size) in order to work; and in the case of an “endless” stream, that is not the case – so it never outputs anything.

Any suggestion on how I could achieve column formatting in this context? EDIT: Doesn’t necesarily have to be the column program; anything else that formats text into columns would be fine (but I’m afraid, for instance awk also needs a complete file)…

Thanks in advance,
Cheers!

  • 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-02T00:04:18+00:00Added an answer on June 2, 2026 at 12:04 am

    I, too, found column disappointing in its inability to stream, and sdaau’s code in its inability to measure my columns. So here’s a fix for both those problems. Maybe not terribly efficient, but it’s just for debugging, anyway. I have it in my ~/bin folder as pcol (be sure to chmod +x it):

    #!/usr/bin/env python
    import sys
    
    sep = ','
    gutter = 2
    for arg in sys.argv:
        if arg.startswith('-s'):
            sep = arg[2:]
        elif arg.startswith('-g'):
            gutter = int(arg[2:])
    
    widths = []
    while True:
        raw = sys.stdin.readline()
        line = raw.strip('\0').strip('\n')
        vals = line.split(sep)
        if len(vals) > len(widths):
            widths = [0] * len(vals)
    
        widths = [max(len(val) + gutter, width) for val, width in zip(vals, widths)]
        metaformat = '%%%ds' * len(widths)
        format = metaformat % tuple(widths)
        print format % tuple(vals)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to color format the text printed to the console using the
I'm using CKEditor in Markdown format to submit user created content. I would like
I have a date and I would like to format the date like that:
I would like to create a query that returns rows in the following format:
I would like to format some commands execution times in a human readable format,
i would like to set the date format of all the dates in my
I would like to create my own data format for an iPhone app. The
I would like to output in this format: e.EE_id e.FNAME e.LNAME SUPer_id s.FNAME s.LNAME
I would like to know the on disk format of an RMAN backup file.
I would like to ask for a recommendation on offline form format which user

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.