[현상] fd = subprocess.run(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, executable='/bin/bash') out = fd.stdout.decode('utf-8').strip() err = fd.stderr.decode('utf-8').strip() 위 코드 실행 중 다음과 같은 에러 발생 UnicodeDecodeError: 'utf-8' codec can't decode byte 0xee in position 1583: invalid continuation byte [원인] The errors argument specifies the response when the ..