vadasg / githubarchive-parser

10 stars 3 forks source link

add [X out of Y] for each file printed... #3

Closed okram closed 12 years ago

okram commented 12 years ago

For example:

[501:5761] home/ubuntu/githubarchive/2012-07-06-5.json.gz

...so we know how many files are left.

okram commented 12 years ago

I added this to my local version.

aCounter = 0;
for (file in fileList){
    fileName = file.toString()
    System.out.println('[' + aCounter++ + ':' + fileList.size() + '] ' + fileName)
   ...
okram commented 12 years ago

Fixed by Vadas.