startup.bash 401 B

1234567891011121314151617181920212223
  1. # run on back
  2. echo "start ServiceCenter.bash"
  3. chmod 777 /root/app/ServiceCenter.bash
  4. sh /root/app/ServiceCenter.bash > /root/app/ServiceCenter.log 2>&1 &
  5. # run on back
  6. echo "start Robot.bash"
  7. chmod 777 /root/app/Robot.bash
  8. sh /root/app/Robot.bash > /root/app/Robot.log 2>&1 &
  9. # run on front
  10. echo "start Demo.bash"
  11. chmod 777 /root/app/Demo.bash
  12. sh /root/app/Demo.bash > /root/app/Demo.log