Advertisement
| 11.13.2008 at 05:09AM PST, ID: 23901572 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: |
Fixture file;
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Fixtures SYSTEM "Fixtures.dtd">
<Fixtures sport="Soccer">
<Teams>
<Team id="65" name="Swansea" />
<Team id="41" name="Watford" />
<Fixture id="3072313" competitionId="301" stageNumber="1" roundNumber="5" leg="1" date="20081111" time="1945+0000" venue="Liberty Stadium" country="England
">
<Participant teamId="65" />
<Participant teamId="41" />
</Fixture>
</Fixtures>
Script which runs the grep;
#!/bin/bash
echo
read -p "Enter the fixture id:" id
echo "These clients take fixture " $id
grep $id /usr/local/production/soccermatchplus/distributor/clients/*/out/fixtures.xml | awk -F/ '{print $8}'
|
Advertisement