Subversion Repositories programming

Rev

Rev 265 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 265 Rev 267
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;
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;
6
       patch -p0 --dry-run;
7
done
7
done
8
 
8
 
9
#rm *.orig
9
#rm *.orig
10
 
10