source: CMT/v1r16p20040901/mgr/cmt_unixtowin.sh

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

Import all tags

File size: 138 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.