From fe38472e196819be270458a2a3343935fed11b0a Mon Sep 17 00:00:00 2001 From: Neils Wagenaar Date: Tue, 8 Jul 2003 19:09:09 +0000 Subject: [PATCH] Initial revision --- fix-unix.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 fix-unix.sh diff --git a/fix-unix.sh b/fix-unix.sh new file mode 100644 index 0000000..4a1a732 --- /dev/null +++ b/fix-unix.sh @@ -0,0 +1,21 @@ +#! /bin/sh +# +# Sets up the Allegro package for building under Unix, converting text +# files from CR/LF to LF format. + + +echo "Converting NeoPocott files to Unix format..." + +find . -type f "(" \ + -name "*.c*" -o -name "*.cfg" -o \ + -name "*.h" -o -name "*.s" -o \ + -name "*.txt" -o -name "*.asm" -o \ + -name "Makefile*" -o -name "readme.*" \ + ")" \ + -exec sh -c "echo {}; + mv {} _tmpfile; + tr -d \\\r < _tmpfile > {}; + touch -r _tmpfile {}; + rm _tmpfile" \; + +echo "Done!" -- 2.37.2