如何执行(文本)文件的一部分?

如何执行(文本)文件的一部分?

因此,我在 Linux 上寻找一个命令,该命令可以让我以二进制形式执行文件,但跳过前 x 个字节,因此:

$ echo "some text" > file
$ cat /bin/bash >> file
$ ??? file  # should run bash

答案1

这可能是您能得到的最接近的答案:

dd if=container.txt of=executable bs=<bytes to skip> skip=1
chmod +x executable
./executable

相关内容