source: CMT/v1r22/mgr/cmt_unixtowin.sh

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

Set exe bits to *.sh

  • Property svn:eol-style set to native
  • Property svn:executable set to *
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.