source: CMT/v1r25/mgr/cmt_os9tounix.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 to $name" 1>&2
6  tr '\r' '\n' <$f >t$$; mv t$$ $name
7done
8
Note: See TracBrowser for help on using the repository browser.