forked from Mirrors/freeswitch
b3d890ef25
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@1086 d0543943-73ff-0310-b7d9-9358b9ac24b2
11 lines
167 B
Bash
Executable File
11 lines
167 B
Bash
Executable File
#!/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
|
|
|