source: CMT/v1r16p20040901/mgr/cmt_wintounix.sh @ 1

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

Import all tags

File size: 201 bytes
Line 
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.