If it says “write error: File too large” when you redirect output to a file, e.g.:
cat a.txt | sort > blah
It may have to do with limitation of the file system’s size (FAT vs ntfs, etc). Try writing to another directory, such as /tmp or whatever.
If it says “write error: File too large” when you redirect output to a file, e.g.:
cat a.txt | sort > blah
It may have to do with limitation of the file system’s size (FAT vs ntfs, etc). Try writing to another directory, such as /tmp or whatever.