Skip to content

Commit

Permalink
web: Fix download examples
Browse files Browse the repository at this point in the history
* Hours are from 0 to 23, without leading zero
* Days (in March) are from 1 to 31, with leading zero
  • Loading branch information
soult committed Apr 11, 2012
1 parent 76bc27d commit 38b08e8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/index.html
Expand Up @@ -76,11 +76,11 @@ <h1 style="margin-bottom:0.5em">
</tr>
<tr>
<td>Activity for March 11, 2012</td>
<td><code>wget http://data.githubarchive.org/2012-03-11-{0..24}.json.gz</code></td>
<td><code>wget http://data.githubarchive.org/2012-03-11-{0..23}.json.gz</code></td>
</tr>
<tr>
<td>Activity for March 2012</td>
<td><code>wget http://data.githubarchive.org/2012-03-{0..30}-{0..24}.json.gz</code></td>
<td><code>wget http://data.githubarchive.org/2012-03-{01..31}-{0..23}.json.gz</code></td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 38b08e8

Please sign in to comment.