1、vi/vim:vi oldboyedu1.txt#会直接创建并打开一个文件oldboyedu1.txt
2、touch:touch oldboyedu2.txt # 如果2.txt不存在,则创建空文件oldboyedu2.txt
3、echo:echo “oldboyedu” >3.txt # 可以直接创建文件3.txt并将oldboyedu写入。
Linux编译c++源文件使用的命令为g++, *** 作步骤如下:
用vim命令打开一个文本进行编辑,如:
#vim hello.cpp
书写源代码内容,如:
#include <stdio.h>int main()
{
printf("hello world\n" )
return 0
}
按ESC键,终止输入,用:wq命令保存,退出。
编译
#g++ -o hello hello.cpp
-o的意思是用来指定生成程序的名字
运行
#./hello
hello world
#
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)