问题
直接运行monibuca的demo脚本,遇到如下报错信息:
localhost:ms lz$ sudo bash <(curl -s -S -L https:///demo.sh)
bash: /dev/fd/63: Bad file descriptor
localhost:ms lz$ (23) Failed writing body
解决
问题的原因应该是ubuntu系统bash命令不支持上述使用方式造成的,可以尝试如下命令解决:
sudo bash < <(curl -s -S -L https:///demo.sh)
尽管不能保证解决所有类似的问题,但是至少了提供一种思路。