标签:style class blog c code color
echo -e "#include <stdio.h>\nint main()\n{\n printf(\"hello world\\\n\");\n return 0;\n}" > h.c; gcc h.c; ./a.out
h.c里的内容
#include <stdio.h> int main() { printf("hello world\n"); return 0; }
终端输出内容
hello world
bash里,echo对换行符的处理,布布扣,bubuko.com
标签:style class blog c code color
原文地址:http://www.cnblogs.com/qtsharp/p/3736338.html