最常用的Linux命令总结

时间:2022-09-02 18:14:42

本博客是一些最常用的Linux命令,对命令的解释不深入,仅仅是日常使用,有些日常的小技巧,也即是当做笔记希望对大家有用:

  • pwd命令
  • cd命令
  • ls命令
  • cp命令
  • mv命令
  • more命令
  • tail命令

pwd命令

pwd命令是显示当前目录
输出
[darren@localhost ~]$ pwd
/home/darren
[darren@localhost ~]$

cd 命令

cd命令是切换目录命令使用

cd 空格 进入当前用户主目录
[darren@localhost ~]$ cd
[darren@localhost ~]$ pwd
/home/darren
[darren@localhost ~]$

cd ~ 进入当前用户主目录
[darren@localhost ~]$ cd ~
[darren@localhost ~]$ pwd
/home/darren

cd / 进入根目录
[darren@localhost /]$ pwd
/
[darren@localhost /]$

cd /home/darren/test 进入绝对目录的路径
[darren@localhost /]$ cd /home/darren/test
[darren@localhost test]$ pwd
/home/darren/test

cd - 是进入上次进入的目录

ls命令

ls命令是显示目录列表
常用ls
[darren@localhost test]$ ls
happy HellWord.java
[darren@localhost test]$
ls -l 显示详细信息和 ll命令等同
[darren@localhost test]$ ll -l
总计 8
drwxrwxr-x 2 darren darren 4096 10-23 15:00 happy
-rw-rw-r-- 1 darren darren 33 10-23 15:02 HellWord.java
[darren@localhost test]$
ls -a 显示所有的包括隐藏文件
[darren@localhost test]$ ls -a
. .. happy HellWord.java
[darren@localhost test]$
ls -ltr
-r:以文件名反序排列并输出目录内容列表;
-t:用文件和目录的更改时间排序;
展示文件列表按照时间和文件名字符排序
[darren@localhost test]$ ll -ltr
总计 8
drwxrwxr-x 2 darren darren 4096 10-23 15:00 happy
-rw-rw-r-- 1 darren darren 33 10-23 15:02 HellWord.java
[darren@localhost test]$

CP命令

cp是拷贝命令经常用于备份文件
cp 文件名 新路径
cp HellWord.java /home/darren
实现了向/home/darren目录下拷贝文件
cp -r 文件夹 新路径 文件夹拷贝
cp -p 文件名 新路径 保留属性拷贝
cp 文件名 新文件名 可以实现拷贝以后重命名

MV命令

mv命令是移动命令
mv 文件名 新文件名 实现重命名
mv 文件名 新路径 到新目录文件中

more命令

查看文件内容命令经常查看日志和文本文档
more 文件名 即可查看文件内容

tail命令

tail 命令也是查询文件内容
经常用到
tail -f 文件名 可以实现实时监控文件
tailf 文件名 同样可以实现该功能
tail -100f 文件名 首先加载100行
tail -n 100 文件名 查看文档最后面的100行
此仅仅是作为笔记使用,并不完善,后续会完善。

参考http://man.linuxde.net/编写