1.>輸出重定向
1 [root@linuxprobe~]# man bash > readme.txt //將bash的使用手冊寫入readme.txt 2 [root@linuxprobe~]# cat readme.txt 3 BASH(1) General Commands Manual BASH(1) 4 覆蓋重定向 5 [root@linuxprobe~]# echo "Welcome to LinuxProbe.Com" > readme.txt 6 [root@linuxprobe~]# echo "Welcome to LinuxProbe.Com" > readme.txt 7 [root@linuxprobe~]# cat readme.txt 8 Welcome to LinuxProbe.Com 9 追加重定向 10 [root@linuxprobe~]# echo "Quality linux learning materials" >> readme.txt 11 [root@linuxprobe~]# cat readme.txt 12 Welcome to LinuxProbe.Com 13 Quality linux learning materials
2.<輸入重定向
[root@linuxprobe~]# wc -l < readme.txt 2
3.管道符 | 作用:把前一個命令原本要輸出到螢幕的資訊當作後一個命令的標準輸入
1 [root@linuxprobe~]# grep /sbin/nologin /etc/passwd | wc -l 2 40 3 統計grep出來的資訊的行數
1 [root@linuxprobe~]# ps aux | grep bash 2 root 1070 0.0 0.1 25384 2324 ? S Sep21 0:00 /bin/bash /usr/sbin/ksmtuned 3 root 3899 0.0 0.2 26540 5136 pts/0 Ss 00:27 0:00 bash 4 root 4002 0.0 0.0 12112 1056 pts/0 S+ 00:28 0:00 grep --color=auto bash 5 和bash有關的程序資訊
4.萬用字元
5.跳脫字元
第一: \ [root@linuxprobe~]# echo "Price is $$PRICE" Price is 3767PRICE [root@linuxprobe~]# echo "Price is \$$PRICE" Price is $5 第二: ··反引號命令執行後返回結果 [root@linuxprobe~]# echo `uname -a` Linux linuxprobe.com 4.18.0-80.el8.x86_64 #1 SMP Wed Mar 13 12:02:46 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux