run-c.sh 321 B

12345678
  1. #!/bin/bash
  2. echo "Run-Commands(将py文件编译成so文件):" \
  3. && set -x \
  4. && cd /home/server/projects/taiwuict/cscec-8bur-vms/build/component-interface \
  5. && python3 cythonize.py build_ext --inplace \
  6. && find /home/server/projects/taiwuict/cscec-8bur-vms/build -name "*.py" -type f | xargs rm -rf \
  7. && echo "End."