fork(5) download
  1. #!/bin/bash
  2. awk -F';' -v OFS=';' '{$6 = sprintf("%04d", $6); print}'
Success #stdin #stdout 0s 5884KB
stdin
510;1093424;0;4485;C;12;109-04-115
510;109324;0;4485;C;1232;109-04-1151
510;109342;0;4485;C;1;109-04-1151
510;10424;0;4485;C;12;109-04-115
stdout
510;1093424;0;4485;C;0012;109-04-115
510;109324;0;4485;C;1232;109-04-1151
510;109342;0;4485;C;0001;109-04-1151
510;10424;0;4485;C;0012;109-04-115