apple banana pear mango grapes
fruit.txt
cat fruit.txt | paste -s -d ',' -
Using piped input
paste -s -d ',' < fruit.txt
Using data redirection