rename.sh 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. #!/bin/bash
  2. # ====================================================================
  3. #
  4. # --------------------------------------------------------------------
  5. FILES="*/*.vcxproj"
  6. # ====================================================================
  7. #
  8. # --------------------------------------------------------------------
  9. change ${FILES} -e pibfile1 -t lightning_pib_file
  10. change ${FILES} -e pibpeek1 -t lightning_pib_peek
  11. change ${FILES} -e nvmfile1 -t lightning_nvm_file
  12. change ${FILES} -e nvmpeek1 -t lightning_nvm_peek
  13. change ${FILES} -e nvmseek1 -t lightning_nvm_seek
  14. change ${FILES} -e PIBExtent1 -t lightning_pib_size
  15. change ${FILES} -e NVMExtent1 -t lightning_nvm_size
  16. # ====================================================================
  17. #
  18. # --------------------------------------------------------------------
  19. change ${FILES} -e pibfile2 -t panther_pib_file
  20. change ${FILES} -e pibpeek2 -t panther_pib_peek
  21. change ${FILES} -e nvmfile2 -t panther_nvm_file
  22. change ${FILES} -e nvmpeek2 -t panther_nvm_peek
  23. change ${FILES} -e nvmseek2 -t panther_nvm_seek
  24. change ${FILES} -e PIBExtent2 -t panther_pib_size
  25. change ${FILES} -e NVMExtent2 -t panther_nvm_size