0

I'm trying to install Lunarvim via bash script with the command linked on github

bash <(curl -s https://raw.githubusercontent.com/lunarvim/lunarvim/master/utils/installer/install.sh)

But it does not work "Syntax error: "(" unexpected"

Jean Simas
  • 43
  • 1
  • 3
  • Please edit your question and add output of `bash --version`. – Cyrus Jun 11 '22 at 22:09
  • `<(...)` is bash-only syntax. It doesn't work if you're running it from `sh` -- even if you're using `sh` to _start_ bash it won't work, because the syntax needs to be recognized by the shell that's first processing it.. – Charles Duffy Jun 11 '22 at 22:10
  • @Cyrus, I doubt output from `bash --version` matters -- if the OP is running this code in `sh`, the problem happens before `bash` is started. – Charles Duffy Jun 11 '22 at 22:12

0 Answers0