Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
libsrtp2
/
4581fe84d9789a56914fb075ca39d20bf52f36b4
/
.
/
undos.sh
blob: db120649680683813cdd8822e42f94594d3ab614 [
file
] [
log
] [
blame
]
#!/bin/sh
#
# usage: undos <file>
#
# strips CRs from a file - useful when moving DOS-created files
# onto UN*X machines
cat $1
|
tr
-
d
"\r"
>
$1
.
tmp
mv $1
.
tmp $1