face_tracker_restart 289 B

1234567891011121314
  1. #!/bin/bash
  2. # Copyright: 2016-2018 ROS小课堂 www.corvin.cn
  3. # Author: corvin
  4. # Description: when restart face tracker node, this bash file should
  5. # be executed.
  6. # History:
  7. # 20181129: initial this bash file.
  8. /usr/sbin/face_tracker_stop
  9. sleep 3
  10. /usr/sbin/face_tracker_start
  11. exit 0