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