Skip to content

Commit

Permalink
add clone_all_repos.py, chmod for web2py_online_book.py
Browse files Browse the repository at this point in the history
clone_all_repos.py is used to clone all my favorite repositories in batch
  • Loading branch information
stoneyrh committed Aug 22, 2012
1 parent 00dd8dd commit 99d2d20
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README
Expand Up @@ -3,3 +3,6 @@ xscripts contains some useful scripts for developers
web2py_online_book.py
This is a script for retreiving contents of web2py online book from its site, and creating a Vim help file like documentation.
With this document, the developer could search whatever he needs easily via Vim commands.

clone_all_repos.py
This is used for cloning all my favorite repositories.
13 changes: 13 additions & 0 deletions clone_all_repos.py
@@ -0,0 +1,13 @@
#!/usr/bin/env python

import os
repos = [#'git@github.com:stoneyrh/xware.git',
#'git@github.com:stoneyrh/xscripts.git',
'git://github.com/mongodb/mongo.git',
'git://github.com/antirez/redis.git',
'git://github.com/web2py/web2py.git',
'git://github.com/JuliaLang/julia.git',
]
for repo in repos:
command = 'git clone %s' % repo
os.system(command)
Empty file modified web2py_online_book.py 100644 → 100755
Empty file.

0 comments on commit 99d2d20

Please sign in to comment.