bash里,echo对换行符的处理

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

 

posted @ 2014-05-19 10:27  catmelo  阅读(1591)  评论(0编辑  收藏  举报