Subversion Repositories programming

Rev

Rev 267 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 267 Rev 270
Line 1... Line 1...
1
#!/bin/bash
1
#!/bin/bash
2
 
2
 
3
for i in index.html ira.html maricela.html matt.html parham.html ryan.html susana.html;
3
for i in index.html ira.html maricela.html matt.html parham.html ryan.html susana.html interesting.html;
4
    do svn diff template.html | \
4
    do svn diff template.html | \
5
       sed "s/template.html/${i}/" | \
5
       sed "s/template.html/${i}/" | \
6
       patch -p0 --dry-run;
6
       patch -p0;
7
done
7
done
8
 
8
 
9
#rm *.orig
9
#rm *.orig
10
 
10