in reply to How can I merge a number of text files into one in a particular sequence?

Using sort (GNU coreutils) 8.4 ...

sh sort -u -t '~' file-1 file-2 file-3 file-4 > x \ && mv -f x file-1
  • Comment on Re: How can I merge a number of text files into one in a particular sequence?
  • Download Code

Replies are listed 'Best First'.
Re^2: How can I merge a number of text files into one in a particular sequence?
by Anonymous Monk on Nov 27, 2014 at 13:18 UTC

    ... oh, the clean up ...

    rm -f file-2 file-3 file-4