shell 脚本到 c 转换器
有谁知道有什么工具可以将 shell 脚本 '.sh' 转换为 C 文件 '.c' 吗?
Does anyone know of any tool which can convert shell script '.sh' into a C file '.c' ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我怀疑是否存在这样的工具。 C 和 shell 文件是截然不同的语言,具有完全不同的用途,并且无法自动将一种语言转换为另一种语言。
I doubt that any such tool exists. C and shell files are extremely different languages with completely different purposes, and there is no way to automatically convert one to the other.
你可以尝试shc。它不是编译器,但它在编码/加密期间确实生成 .c 文件。
否则,请手工完成。学习用 C 和 shell 编写代码,然后自己翻译它们。这是最好的方法。
you can try shc. Its not a compiler, but it does generate .c files during encoding/encrypting.
Otherwise, do it by hand. Learn to code in C and shell, then translate them yourself. that's the best way to do it.