qos |
Subversion Repositories: |
Line No. | Rev | Author | Line |
---|---|---|---|
1 | 16 | simandl | #!/bin/bash |
2 | |
||
3 | working="qoswork"; |
||
4 | history="qos"; |
||
5 | name="qos_base"; |
||
6 | |
||
7 | #echo $working $history; |
||
8 | |
||
9 | for file in $history/$name* |
||
10 | do |
||
11 | # echo $file; |
||
12 | comment=`echo $file | awk -F "_" '{print $2,$3,$4,$5,$6,$7,$8}'` |
||
13 | comment=`echo $file | sed 's/qos\/qos_base-//g'` |
||
14 | comment="Verze $comment"; |
||
15 | #echo $comment; |
||
16 | echo "cp $file $working/$name" |
||
17 | echo "svn status $working" |
||
18 | |
||
19 | echo "svn commit $working -m \"$comment\"" |
||
20 | done |