source: CMT/HEAD/mgr/cmt_wintounix.sh@ 28

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

Set exe bits to *.sh

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 191 bytes
RevLine 
[2]1#!/bin/sh -f
2
3for f in $* ; do
4 echo "Convert $f" 1>&2
5 cat $f | \
6 sed -e 's#[ ]$#'__$$$$__'#' | \
7 tr '\r' ' ' | \
8 sed -e 's#[ ]$##' -e 's#'__$$$$__'$# #' >t$$; mv t$$ $f
9done
10
Note: See TracBrowser for help on using the repository browser.