bing

Results 4 issues of bing

command : qtsetup INFO[0000] running: 'qtsetup prep' INFO[0000] successfully created qtrcc symlink in your PATH (/usr/local/bin/qtrcc) INFO[0000] successfully created qtmoc symlink in your PATH (/usr/local/bin/qtmoc) INFO[0000] successfully created qtminimal symlink...

#!/bin/sh echo "start" echo "scale=50000; 4*a(1)" | bc -l -q echo "end" When executing shell scripts, "bc -l -q" is always 100% ![image](https://user-images.githubusercontent.com/4667056/99929867-cc857580-2d89-11eb-846a-e9edd5124017.png) Is the child process out of control?

```golang func (s *SSEServer) Shutdown(ctx context.Context) error { s.mu.RLock() srv := s.srv s.mu.RUnlock() if srv != nil { s.sessions.Range(func(key, value interface{}) bool { if session, ok := value.(*sseSession); ok {...