Dup Ver Goto 📝

WindowsToUnix

PT2/aw/os/shell does not exist
To
9 lines, 43 words, 222 chars Page 'WindowsToUnix' does not exist.

fixcrlf -- delete "\r" from files, or from stdin if no files are specified -- useful in CygWin when pasting scripts to files

#!/bin/dash
if [ $# = 0 ]; then
  sed -e "s/\r//"
else
  sed -i -e "s/\r//" "$@"
fi