Got my CentOS 8 VPS, login as root and want to run the command curl install.meteor.com | /bin/sh
but getting /bin/sh: line 1: a: No such file or directory
So I found /bin/sh
located under the system directory "/", so tried ../bin/sh
for no avail.
Checked the file encoding and found it to be binary i.e. head -1 ../bin/sh
is useless to check typo in line 1.
How can I run this command? Is it correct to run it from the root directory? I got the same error when run from /home/<userName>
. Please see terminal image. Thanks
Update:
The correct command should be curl https://install.meteor.com/ | sh
and not curl install.meteor.com | /bin/sh
which was copied from non meteor web site.