source: CMT/v1r19/mgr/cmt_unixtowin.sh @ 11

Last change on this file since 11 was 11, checked in by arnault, 19 years ago

Changing eol-style property

  • Property svn:eol-style set to native
File size: 130 bytes
Line 
1#!/bin/sh -f
2
3for f in $* ; do
4  name=`basename $f`
5  echo "Convert $f" 1>&2
6  awk '{ print $0"\015"; }' $f >t$$; mv t$$ $f
7done
8
Note: See TracBrowser for help on using the repository browser.