Started at Thu 31 Oct 2019 10:58:15 AM EDT
./FindFungi-v0.23.3/FindFungi-0.23.3.sh: 193: ./FindFungi-v0.23.3/FindFungi-0.23.3.sh: Syntax error: redirection unexpected
According to this, the default shell on Ubuntu is dash not bash, and <<< isn't valid. Changing the shebang to #!/bin/bash worked.
According to this, the default shell on Ubuntu is dash not bash, and
<<<
isn't valid. Changing the shebang to#!/bin/bash
worked.