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