Thanks Padraig. Where can i find the source code for comm command? Also , do you have any instructions on where to download the gcc and how to install on windows / Solaris?
Regards, Jayanthi On Tue, Jan 14, 2014 at 5:35 PM, Pádraig Brady <p...@draigbrady.com> wrote: > On 01/14/2014 10:15 PM, jayanthi radhakrishnan wrote: > > Hi , > > > > We have a problem that our comm command in Solaris is not Large File > aware ( File size larger than 2 GB). > > Does your comm command support Large File? > > I mean whether it can compare 2 files which are larger than 2 GB in Size. > > Yes GNU comm will support the largest files available on a platform > directly. > You might be able to use your comm with the overhead of a data copy through > some fifos or pipes with something like: > > comm <(cat file1) <(cat file2) > > thanks, > Pádraig. >