一、管道符号 | (将前面命令的输出结果传给后面的命令)
[[email protected] ~]$ cat /etc/passwd | grep "^root" root:x:0:0:root:/root:/bin/bash
二、重定向符号 [>] [<]
[[email protected] ~]# df > /usr/tmp/df.txt # >:输入重定向 即将命令结果重定向给df.txt,需要root权限,df.txt若不存在则新建 [[email protected] ~]# cat /usr/tmp/df.txt Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda2 18339256 2757204 14650468 16% / tmpfs 506272 72 506200 1% /dev/shm /dev/sda1 297485 33538 248587 12% /boot /dev/sr0 4251346 4251346 0 100% /media
[[email protected] ~]# wc -l < /usr/tmp/df.txt # <:输出重定向 即将df.txt输出给wc命令 -l:统计行数 5
[[email protected] ~]# pwd > /dev/null # 若要执行命令,但不要求输出,可以重定向到/dev/null [[email protected] ~]#
三、追加符号 [>>] [<<]
[[email protected] ~]# df >> /usr/tmp/df.txt [[email protected] ~]# cat /usr/tmp/df.txt Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda2 18339256 2757204 14650468 16% / tmpfs 506272 72 506200 1% /dev/shm /dev/sda1 297485 33538 248587 12% /boot /dev/sr0 4251346 4251346 0 100% /media Filesystem 1K-blocks Used Available Use% Mounted on /dev/sda2 18339256 2757208 14650464 16% / tmpfs 506272 72 506200 1% /dev/shm /dev/sda1 297485 33538 248587 12% /boot /dev/sr0 4251346 4251346 0 100% /media
[[email protected] ~]# cat << eof # eof 文档起点 > hello Linux # 文档内容第一行 > Linux: Hello eRrsr # 文档内容第二行 > eof # eof 文档终点 hello Linux Linux: Hello eRrsr
四、家目录 ~
[[email protected] ~]# pwd /root
[[email protected] ~]# su - eRrsr [[email protected] ~]$ pwd /home/eRrsr
时间: 2024-10-10 18:59:42