Entering edit mode
3.1 years ago
m90
▴
30
I want to convert the output of the below mariamscript.sh shell script to csv, so that I can get the information in column format :
#!/bin/bash
Name="mariam moahmed"
Email=mariamdarwish880@gmail.com
slack=mariamdarwish0
biostack="transcriptomics/machinelearning and datascince"
for i in {Name,Email,slack,biostack}
do
echo "$i = ${!i}"
done
Please post the expected output.