Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(758)

Side by Side Diff: libsrtp/undos.sh

Issue 3423016: Add current version of libSRTP from CVS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: '' Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « libsrtp/timing ('k') | libsrtp/update.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
8 cat $1 | tr -d "\r" > $1.tmp
9 mv $1.tmp $1
10
OLDNEW
« no previous file with comments | « libsrtp/timing ('k') | libsrtp/update.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698