for dir in */January ; do mv ${dir} ${dir//January/Spring} ; done
# renames any folder called January to Spring
# getting rid of the space problem is something to do with export IFS=$'\n'.
# space problem is becuase list items are separated by space. This changes it to new line
# sets the shell to be that way globally. Close and reopen the shell to go back to default