On Sun, Dec 26, 2010 at 4:45 PM, Arnaud TARDY <[email protected]> wrote:
> Linux: echo 'somme' | md5sum > result: cc72185f414a55738ee4460aa82802b3 > > windows somme > Result: 3CE6E7F240E6B94C36FD0DDA70C213E9 > > Can you help me? I think that you're seeing the difference in line termination characters in Linux and Windows. If you just want the characters themselves echoed to the command in Linux, you need to use 'echo -n' otherwise it gets terminated with a newline.
