Linux command:
cat filename | tr -d [:space:]
This removes the whitespace and displays the results as standard out, you can then add a little bit to the command to save it to a file, like so:
cat filename | tr -d [:space:] >> fileoutname.txt