Hi Maykel, > Now only remove ^M character from log files in buffer time but this > not working: > > script -f -c '/usr/local/bin/cccam -d' mylogfile.log | sed 's/^M//g' script(1) writes to mylogfile.log, sed sees no input. This will remove the carriage returns at the end of lines once script has finished. script -f -c '/usr/local/bin/cccam -d' mylogfile.log sed -i 's/\r$//' mylogfile.log > https://github.com/ryanfox1985/docker-cccam/blob/master/CCcam.x86_64 It's an executable, no source, no documentation to suggest what it will do, so I'm not going to run it. :-) -- Cheers, Ralph.