尝试使用命令运行二进制文件时出现以下错误:tmp/123.bin
tmp/123.bin: 1: tmp/123.bin: Syntax error: EOF in backquote substitution
我不知道是什么可能导致错误,因为这是与脚本相关的错误消息,我正在尝试运行二进制文件。
该文件是使用以下(nodejs)代码创建的。
await runCommand(`nasm -f elf32 ./tmp/${id}.asm -o ./tmp/${id}.o`);
await runCommand(`ld -m elf_i386 ./tmp/${id}.o -o ./tmp/${id}.bin`);
await runCommand(`chmod +x tmp/${id}.bin`);
我在我的开发机器(wsl,Ubuntu 20.04 LTS)上执行文件没有问题但是当尝试在 Google Cloud Run 上做同样的事情时,命令失败。
任何帮助是极大的赞赏!:)
编辑:这是我设法找出的一些信息。
ls -l ./tmp/123.bin
→-rwxrwxr-x 1 root root 956 Oct 30 18:24 ./tmp/123.bin
file ./tmp/123.bin
→./tmp/123.bin: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), statically linked, not stripped
uname -a
→Linux localhost 4.4.0 #1 SMP Sun Jan 10 15:06:54 PST 2016 x86_64 GNU/Linux