Hi folks!
I have to sort the following input file (the first field should be the key):
Mister RossStreet 11200 City; cash amount 100; xyz
Madame BrownStreet 91000Town; cash amount 9; xyz
Mister RossStreet 11200 City; cash amount 13; xyz
Madame BrownStreet 91000Town; cash amount 9; xyz
After sorting it should look like this:
Madame BrownStreet 91000Town; cash amount 9; xyz
Madame BrownStreet 91000Town; cash amount 9; xyz
Mister RossStreet 11200 City; cash amount 100; xyz
Mister RossStreet 11200 City; cash amount 13; xyz
; is used as delimiter
final file size would be about 100 MByte
Thanks a lot in advance
I have to sort the following input file (the first field should be the key):
Mister RossStreet 11200 City; cash amount 100; xyz
Madame BrownStreet 91000Town; cash amount 9; xyz
Mister RossStreet 11200 City; cash amount 13; xyz
Madame BrownStreet 91000Town; cash amount 9; xyz
After sorting it should look like this:
Madame BrownStreet 91000Town; cash amount 9; xyz
Madame BrownStreet 91000Town; cash amount 9; xyz
Mister RossStreet 11200 City; cash amount 100; xyz
Mister RossStreet 11200 City; cash amount 13; xyz
; is used as delimiter
final file size would be about 100 MByte
Thanks a lot in advance