xref: /aosp_15_r20/external/libsrtp2/undos.sh (revision 90e502c7aef8d77d0622bb67d75435c6190cfc1a)
1#!/bin/sh
2#
3# usage: undos <file>
4#
5# strips CRs from a file - useful when moving DOS-created files
6# onto UN*X machines
7
8cat $1 | tr -d "\r" > $1.tmp
9mv $1.tmp $1
10
11