Dup Goto 📝

WindowsToUnix

PT2/aw/os/shell 07-31 13:46:42
To Pop
9 lines, 43 words, 222 chars Monday 2023-07-31 13:46:42

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