Gogh icon indicating copy to clipboard operation
Gogh copied to clipboard

Install command doesn't work on NuShell

Open serramatutu opened this issue 2 years ago • 2 comments

Hello! I'm using NuShell as my primary shell and the install script doesn't work:

bash -c "$(wget -qO- https://git.io/vQgMr)"

The reason it doesn't work in nushell is because the eval expression $() is not a valid syntax for it.

serramatutu avatar Aug 16 '21 14:08 serramatutu

Also, it doesn't work in Fish shell for similar reasons I think

vijay-prema avatar Oct 31 '21 01:10 vijay-prema

So I dont know if this is good or bad, but I made it work from Fish by running this:

bash -c 'bash -c "$(wget -qO- https://git.io/vQgMr)"'

vijay-prema avatar Oct 31 '21 01:10 vijay-prema