Sort by

recency

|

52 Discussions

|

  • + 0 comments

    Python

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

    A solution using xargs: cat | xargs -I {} printf "%s\t" {}

  • + 0 comments

    paste -s -d " "

  • + 0 comments

    tr "\n" "\t"

  • + 0 comments
    paste -s