Sort by

recency

|

56 Discussions

|

  • + 0 comments

    paste -s -d '\t'

  • + 0 comments

    This worked nice.

    #!/bin/bash
    
    tr '\n' '\t'
    

    `

  • + 0 comments

    paste -s tr '\n' '\t'

  • + 0 comments

    what to take input?

  • + 0 comments

    Python

    import sys
    
    for line in sys.stdin:
        print(line.strip(), end='\t')