purge.sh 473 B

1234567891011121314151617
  1. #!/bin/bash
  2. # ====================================================================
  3. #
  4. # --------------------------------------------------------------------
  5. PURGE=/usr/local/bin/cmassoc/purge
  6. # ====================================================================
  7. #
  8. # --------------------------------------------------------------------
  9. if [ -x ${PURGE} ]; then
  10. ${PURGE} -vr "t.*" "*.00?"
  11. ${PURGE} -vr "*.obj" "*.log" "*.tlog" "*.idb" "*.pdb" "*.lastbuildstate"
  12. fi