#!/bin/bash
# get Volumes json file
vjson=$HOME/.ceurws/volumes.json
if [ ! -f $vjson ]
then
  echo "downloading $vjson"
  cd $HOME/.ceurws
  wget http://cvb.bitplan.com/volumes.json
else
   echo "$vjson already downloaded"
fi
