命令:centos:123456linux windows>ls >dir>ls --help 查看帮助 >man-ls >clear 清屏 >cls>cd/home 切换目录 >cd d:/>cd .. 进入上级目录>pwd 显示当前目录>cd 返回上次目录>su root 切换用户>passwd 修改密码>ifconfig
:wq! 保存文件并退出vi :q 不保存文件,退出vi 没有ipv4网络时参考https://blog.csdn.net/qq_36354011/article/details/79059056
>mkdir ~/Downloads/a 创建目录>touch ~/doenloads/a/1.txt 创建文件>echo hello>1.txt 向1.txt 写入内容>cat 1.txt 查看内容> cp 1.txt 2.txt 复制文件> rm 3.txt 删除文件>rm -rf temp 强行递归删除>cp *.txt temp/ 将此目录下的txt文件都复制到temp目录下>nano 1.txt 编辑文件> ctrl+O 和ctrl+X 保存退出>more -5 tst.txt 分页显示 按q退出>head tst.txt 显示头文件>head --lines=-10 tst.txt 除了后十行全部打印>tail tst.txt 显示最后十行内容>find .| more>/mnt/hgfs/ 共享的文件夹一般在这个文件夹下>uname -a 查看系统内核>find -name '1.txt' 查找文件的路径>gzip 1.txt 原地压缩>gzip -d 1.txt.gz 原地解压>gzip -r temp/ 将temp文件夹下的每个文件都压缩成小文件>gzip -dr temp/ >tar cf my.tar 1.txt 归档压缩文件>tar xvf my.tar 解压文件>find . | xargs 单行变多行>find . | grep txt | xargs 将txt文件单行变成多行显示 xargs (多行转单行,使用空格替换回车换行符)>echo 192.168.8.128 > ip.txt ping ip 将ip写入txt文件进行ping>ping `cat ip.txt` ping 注意符号