How can I remove , after the first column of every line
$ cat tmp.txt
Name, Charles, James, Criss 
Age, 21, 25, 23
There may be n number of columns in the file.
And I need the output like
$ cat tmp.txt
Name, Charles James Criss
Age, 21 25 23
the , should not be deleted from first column.
 
     
     
     
     
     
    