Sort by

recency

|

53 Discussions

|

  • + 0 comments

    paste -sd ";" paste cmd use to merge files column. -s is to paste serially -d ";" use delimiter semi-colon instead of tab(default)

  • + 0 comments

    paste -sd\;

  • + 0 comments
    paste -s | tr $'\t' ';'
    
  • + 0 comments

    Simple solution:

    paste -sd';'
    
  • + 0 comments

    tr $"\n" ";" | head -c -1