例如,我有以下命令:
git clone https://example.com/mygit.git && cd mygit && npm i
在我上传到url的文件中,我想从终端运行它,如何从终端运行它?
答案 0 :(得分:0)
您正在使用Linux发行版还是Windows?
假设使用Linux-您需要设置文件执行许可权位(有关更多信息,请参见此处-> https://www.tutorialspoint.com/unix/unix-file-permission.htm)
然后,您需要使用指定的路径(即.exe)执行文件。如果脚本名为“ myScript.sh”,则将运行:
./myScript.sh
或
/path/to/myScript.sh