space must not be used to separate columns

This commit is contained in:
bg nerilex 2020-06-22 14:50:17 +02:00
parent 2a0daa0f57
commit c945abb1da
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ BEGIN {
/^.+$/ {
l = $0;
gsub(/[\ \t]+/, ";", l);
gsub(/\t+/, ";", l);
printf("%s\n", l) >> f;
}