Which is:
<machine>:~ techmick$ $ sh -c "$(curl -fsSL https://...)"
bash: $: command not found
There seems to be an error.
Not sure why. What could possibly be wrong?
Which is:
<machine>:~ techmick$ $ sh -c "$(curl -fsSL https://...)"
bash: $: command not found
There seems to be an error.
Not sure why. What could possibly be wrong?
Make sure you don't have copied the $ in front of the command.
It is a shell prompt maker, and should not be part of it.
You should only copy and execute:
sh -c ...
Not:
$ sh -c ...