openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 86478423ca0d7c22d7546b52eb9f55f72b0bfc00
parent ff0f86b1975b77e13cbc2139b4c84727d00dd575
Author: dankert <devnull@localhost>
Date:   Mon, 19 Mar 2012 23:10:02 +0100

Tool, um Windows-Zeilenumbrüche durch Unix-Zeilenumbrüche zu ersetzen.

Diffstat:
config/dos2unix.sh | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/config/dos2unix.sh b/config/dos2unix.sh @@ -0,0 +1,8 @@ +#!/bin/bash +# +# +for fn in *.ini.php; do + tr -d '\015' < $fn > $fn.new + rm $fn + mv $fn.new $fn +done;+ \ No newline at end of file