1.切换目录
# . 表示当前目录
# cd .. 回到上一级目录等同于相对路径
# cd 或者 cd ~ 直接回到家目录
# cd /home/alice 切换目录=绝对路径
# cd - 回到上一次所在目录,从哪来回哪去
2.创建文件
[root@rootlocalhost ~]# touch file1.txt //如果不存在则创建,如果存在则修改时间,创建的的文件是空文件
[root@rootlocalhost ~]# touch /home/file10.txt
[root@rootlocalhost ~]# touch /home/{zhuzhu,gougou} #{}集合
[root@rootlocalhost ~]# touch /home/file{1..20} #批量创建
echo 加内容 > 加文件名 #覆盖:把之前的内容替换掉
# echo 123 > a.txt
echo 加内容 >> 加文件名 #追加:保留之前的内容,在后面添加新内容
# echo 345345 >> a.txt
当使用echo 123 >> a.txt 这个命令的时候在文件不存在的时候会创建该文件并将内容追加到改文件中
扩展:
echo -e "\e[31mI miss you\e[0m"
3.创建目录
语法:mkdir -v 详细 -p 递归 目录
# mkdir dir1
创建两个目录:
# mkdir /home/dir2 /home/dir3
# mkdir /home/{dir4,dir5}
# mkdir -v /home/{dir6,dir7} #-v :verbose 冗长的。显示创建时的详细信息
# mkdir -p /home/dir8/111/222 #-p 创建连级目录,一级一级的创建
4.复制
==复制 cp -r 目录 -v 详细 -f 强制 -n 静默
# mkdir /home/dir{1,2} #创建目录
# cp -v anaconda-ks.cfg /home/dir1/ #-v 显示详细信息
# cp anaconda-ks.cfg /home/dir1/test.txt #复制并改文件名
# cp -r /etc /home/dir1 #-r 拷贝目录使用,连同目录里面的文件一块拷贝
# cp -r /etc /tmp
# cp -rnf /etc/ /tmp 强制静默拷贝
# \cp -r /etc/ /tmp 强制静默拷贝
语法: cp -r 源文件1 源文件2 源文件N 目标目录 #将多个文件拷贝到同一个目录
# cp /etc/sysconfig/network-scripts/ifcfg-ens33 /etc/passwd /etc/hosts .
5.移动
1.创建一个新文件file1
[root@localhost ~]# touch /root/file1
2.把file1文件移动到/tmp目录中。
[root@localhost ~]# mv /root/file1 /tmp/
3.把file1文件更名为file2
[root@localhost ~]# mv /tmp/file1 /tmp/file2
4.观察file1文件已经更名为file2
[root@localhost ~]# cd /tmp/
[root@localhost tmp]# ls
6.删除
==删除 rm -r 递归删除目录 -f force强制 -v 详细过程 *通配符
实例1:删除/home/dir1
# cd /home/
# rm -rf dir1/
-r 递归,删除目录时
-f force强制
-v 详细过程
示例2:
[root@localhost ~]# mkdir /home/dir10
[root@localhost ~]# touch /home/dir10/{file2,file3,.file4}
[root@localhost ~]# rm -rf /home/dir10/* #不包括隐藏文件
[root@localhost ~]# ls /home/dir10/ -a
. .. .file4
示例3:
[root@localhost ~]# touch {1..10}.txt
[root@localhost ~]# touch file{1..20}.txt #创建file1-10的txt文件
[root@localhost ~]# rm -rf file1*
7.查看文件内容
cat---查看一个文件的全部内容
[root@localhost ~]# cat /etc/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin
adm:x:3:4:adm:/var/adm:/sbin/nologin
...
参数:
-n 显示行号
-A 包括控制字符(换行符/制表符)
head头部
[root@localhost ~]# head /etc/passwd #默查看前十行
[root@localhost ~]# head -2 /etc/passwd #默认查看前两行
tail尾部
[root@localhost ~]# tail /etc/passwd #默认查看文件的后十行
[root@localhost ~]# tail -1 /etc/passwd #查看文件最后一行
[root@localhost ~]# tail /var/log/messages
[root@localhost ~]# tail -f /var/log/secure #-f 动态查看文件的尾部,该文件必须存在
[root@localhost ~]# tail -F /var/log/secure #-f 动态查看文件的尾部,该文件可以不存在
[root@localhost ~]# tailf /var/log/secure #功能同上
grep过滤关键字 grep 针对文件内容进行过滤
过滤文件中带有root的内容:
[root@localhost ~]# grep 'root' /etc/passwd
过滤以root开头的行:^ --以什么开头
[root@localhost ~]# grep '^root' /etc/passwd
过滤以bash结尾的行:$ --以什么结尾
[root@localhost ~]# grep 'bash$' /etc/passwd
过滤目录下的关键字root
[root@localhost ~]# grep -r "root" /etc/
less --分页显示
[root@localhost ~]# less /etc/makedumpfile.conf.sample
1.空格键是翻页 回车键是翻行
2.上下箭头可以来回翻
3. /关键字 #搜索 (n按关键字往下翻 N按关键字往上翻)
4.快捷键:q -quit 退出
more --分页显示文件内容
[root@localhost ~]# more 文件名
空格键是向下翻页 回车键是翻行
Ctrl+B 向上翻页
less和more的区别
①less可以按键盘上下方向键显示上下内容,而more不能通过上下方向键控制显示。
②less不必读整个文件,加载速度会比more更快。
③less退出后shell不会留下刚显示的内容,而more退出后会在shell上留下刚显示的内容。
④阅读到文件结束时,less不会退出,而more会。
⑤less可用行号或百分比作为书签浏览文件,而more不行。
⑥相比more,less提供更加友好的检索、高亮显示等操作