# 初见 Linux
首先安装什么的就不讲了,这里先讲一下基础命令
# 简单命令
# who 命令
[karry@localhost ~]$ who am i |
[karry@localhost ~]$ who am i
karry pts/0 2023-09-01 10:26 (laptop-karry1107)
# echo 命令
这个命令是将内容输出到屏幕上
[karry@localhost ~]$ echo Hello Karry.Liu |
[karry@localhost ~]$ echo Hello Karry.Liu
Hello Karry.Liu
# date 命令
[karry@localhost ~]$ date |
[karry@localhost ~]$ date
2023 年 09 月 01 日 星期五 10:32:23 PDT
# cal 命令
[karry@localhost ~]$ cal 9 2023 |
[karry@localhost ~]$ cal 9 2023
九月 2023
日 一 二 三 四 五 六
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
# 基础命令
# 基础文件操作命令
# 展示文件夹中的内容
[karry@localhost ~]$ ls |
[karry@localhost ~]$ ls
Desktop Documents Downloads Music Pictures Public Templates Videos
# 进入 / 退出文件夹
[karry@localhost ~]$ cd Desktop |
[karry@localhost ~]$ cd Desktop
[karry@localhost Desktop]$
# 创建文件夹
[karry@localhost Desktop]$ mkdir LinuxHello |
[karry@localhost Desktop]$ ls
firefox.desktop myFile test[karry@localhost Desktop]$ mkdir LinuxHello
[karry@localhost Desktop]$ ls
firefox.desktop LiunxHello myFile test
# 创建一个文件
[karry@localhost LinuxHello]$ touch fistText.txt |
[karry@localhost Desktop]$ ls
firefox.desktop LinuxHello myFile test
[karry@localhost Desktop]$ cd LinuxHello
[karry@localhost LinuxHello]$ touch fistText.txt
[karry@localhost LinuxHello]$ ls
fistText.txt
# 编辑文件
[karry@localhost LinuxHello]$ touch fistText.txt |
~
~
~
“fistText.txt” 0L, 0C
按 i 进入插入模式
~
~
~
– 插入 –
现在可以编辑文件了!
hi hi,这是我第一次学习 Linux!!!
我的名字是诗岸梦行舟
或者是 Karry.Liu
让我们共同努力吧!!
~
~ – 插入 –
按 Esc 退出插入模式
按 :+ w 保存刚才所编辑的文件
hi hi,这是我第一次学习 Linux!!!
我的名字是诗岸梦行舟
或者是 Karry.Liu
让我们共同努力吧!!
~
“fistText.txt” 4L, 128C 已写入
最后按 :+ q 退出 vi 编辑器
~
~
:q
# 读文件内容
[karry@localhost LinuxHello]$ cat fistText.txt |
[karry@localhost LinuxHello]$ cat fistText.txt
hi hi,这是我第一次学习 Linux!!!
我的名字是诗岸梦行舟
或者是 Karry.Liu
让我们共同努力吧!!
[karry@localhost LinuxHello]$
# 使用 g++ 编译程序
-
如果你还没有安装 g++ 编译器,请先安装
sudo yum install gcc-c++ make
安装需要一定时间,请耐心等待!
-
进入指定目录,创建 cpp 文件。
[karry@localhost C++]$ touch firstApp.cpp
-
使用 vi 指令编辑文件
[karry@localhost C++]$ vi firstApp.cpp
-
按 i 进入插入模式,编辑程序
#include<iostream>
using namespace std;
int main(){
int a=1;
int b=2;
int c=a+b;
cout<<"计算结果为:"<<a<<"+"<<b<<"="<<c<<endl;
return 0;
}
-
按 Esc 退出插入模式,按 :+ w 保存刚才所编辑的文件,最后按 :+ q 退出 vi 编辑器
-
执行命令编译程序
[karry@localhost C++]$ g++ -o firstAppCompile firstApp.cpp
-
运行输出结果
[karry@localhost C++]$ ./firstAppCompile
[karry@localhost C++]$ ./firstAppCompile
计算结果为:1+2=3
[karry@localhost C++]$