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

Side by Side Diff: libsrtp/update.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/undos.sh ('k') | no next file » | 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 # update.sh
4 #
5 # update copyright dates in files
6
7 a=`find . -name "*.[ch]"`
8 for x in $a; do
9 sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp;
10 mv $x.tmp $x;
11 done
12
13
14
15
OLDNEW
« no previous file with comments | « libsrtp/undos.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698