mirror of
https://github.com/stevenhowes/MXDiag.git
synced 2026-05-27 00:03:39 +01:00
8 lines
100 B
Bash
8 lines
100 B
Bash
ALL=
|
|
while IFS=, read -r col1 col2
|
|
do
|
|
ALL=$ALL$col1,
|
|
done < dtc.csv
|
|
echo -n $ALL | sed 's/.$//'
|
|
|