I have a .log file which is a binary file(BSC0000.log). So Viewed it in a HEX viewer(OKteta) and exported it directly in to a string(split_space.txt). With spaces in the middle as 
00 DF 00 45.
The thing is that when I counted the characters in both file it showed a huge difference.
laksith@laksithPC:~/Desktop/test$ cat split_space.txt | wc -c
31617470
laksith@laksithPC:~/Desktop/test$ cat BSC0000.log | wc -c
10539157
A guess can be made that it might be because of the spaces in between . But then it should be roughly like 10539157 + 10539157/2 but how come it be this value 31617470.
but 10539157 * 3 = 31617471 that is the value from the command line +1
 
    