info-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: pre-commit converter


From: David Tyler
Subject: Re: pre-commit converter
Date: Wed, 08 Mar 2006 07:20:41 -0700

Try locating one of the following commands on your UNIX system:

flip
unix2dos
dos2unix

- Dave

>>> <address@hidden> 3/7/2006 03:36 PM >>>
I would like to convert any DOS files to unix format prior to commit.
It is annoying when someone commits from a windows machine with DOS
line endings, but I am in no position to enforce unix format checkins.

How can I modify the file to be commited?  Would this work:
#!/bin/sh
for file in $*
do
  tr -d '\15\32' < $file > $file.unix
  mv $file $file.DOS
  mv $file.unix $file
done

Thanks.
Matyas

_______________________________________________
Info-cvs mailing list
address@hidden 
http://lists.nongnu.org/mailman/listinfo/info-cvs





reply via email to

[Prev in Thread] Current Thread [Next in Thread]