Minor fix number of imported team
This commit is contained in:
parent
4f97d2088d
commit
db2e286677
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ new_team() {
|
||||||
}
|
}
|
||||||
|
|
||||||
TNUM=0
|
TNUM=0
|
||||||
TMAX=`cat "$PART_FILE" | wc -l`
|
TMAX=`sed "1d" "$PART_FILE" | cut -d \; -f 15 | sort | uniq | wc -l`
|
||||||
sed "1d" "$PART_FILE" | cut -d \; -f 15 | sort | uniq | while read TEAMID
|
sed "1d" "$PART_FILE" | cut -d \; -f 15 | sort | uniq | while read TEAMID
|
||||||
do
|
do
|
||||||
TNUM=$(($TNUM + 1))
|
TNUM=$(($TNUM + 1))
|
||||||
|
|
Reference in a new issue