Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将文件的内容通过管道传输g++到编译程序?
g++
我想这样做是因为我想使用数据库中的文件而不是磁盘上的物理文件。可以通过我制作的 API 轻松检索文件内容。
例如,我想做类似的事情:
g++ contents_of_file -o executable
非常感谢。
山姆。
是的,如果您使用-x选项指定语言,则可以通过管道传输到 gcc;
-x
echo "int main(){}" | gcc -Wall -o testbinary -xc++ -
更多乐趣:
alias true="gcc -xc++<(echo 'main()<%int(*)(int*)=6 "\?"<[:0:>;%>')&&a.out"
嘿,为我工作。