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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libsrtp/timing ('k') | libsrtp/update.sh » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libsrtp/undos.sh
===================================================================
--- libsrtp/undos.sh (revision 0)
+++ libsrtp/undos.sh (revision 0)
@@ -0,0 +1,10 @@
+#!/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
+
Property changes on: libsrtp/undos.sh
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
« 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