update_module_from_skeleton 222 B

123456789
  1. #! /bin/bash
  2. # Updates all copies of the module to the skeleton's version
  3. for i in $( find . -type d -name "$1" -print | egrep -v "000-skeleton" ); do
  4. echo Processing $i...
  5. pushd $i
  6. update_from_skeleton
  7. popd
  8. done