linux新建文件命令是什么?

linux新建文件命令是什么?,第1张

Linux创建文件可以使用的命令有:vi/vim、touch、echo。

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

#


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/9025423.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-24
下一篇 2023-04-24

发表评论

登录后才能评论

评论列表(0条)

保存