標準輸入,標準輸出,標準錯誤mysql
file descriptors (FD, 文件描述符或Process I/O channels);linux
進程使用文件描述符來管理打開的文件sql
[root@linux ~]# ls /proc/$$/fd 0 1 2 3 4
0, 1, and 2, known as standard input, standard output, and standard error
正確輸出:1> 1>> 等價於 > >>shell
錯誤輸出:2> 2>>vim
[root@linux ~]# date 1> date.txt
[root@linux ~]# date >> date.txt
[root@linux ~]# ls /home/ /aaaaaaaaa >list.txt ls: 沒法訪問/aaaaaaaaa: 沒有那個文件或目錄 [root@linux ~]# ls /home/ /aaaaaaaaa >list.txt 2>error.txt //重定向到不一樣的位置
[root@linux ~]# ls /home/ /aaaaaaaaa &>list.txt //混合輸出
[root@linux ~]# ls /home/ /aaaaaaaaa >list.txt 2>&1 //重定向到相同的位置
[root@linux ~]# ls /home/ /aaaaaaaaa >list.txt 2>/dev/null //空設備,即將產生的輸出丟掉
[root@linux ~]# ls /home/ /aaaaaaaaa &>/dev/null //空設備,即將產生的輸出丟掉
[root@linux ~]# vim ping1.sh
ping -c1 10.18.40.100
if [ $? -eq 0 ];then
echo "10.18.40.100 is up."
else
echo "10.18.40.100 is down!"
fi [root@linux ~]# vim ping1.sh [root@linux ~]# chmod +x ping1.sh [root@linux ~]# ./ping1.sh
[root@linux ~]# vim ping1.sh
ping -c1 10.18.40.100 &>/dev/null
if [ $? -eq 0 ];then
echo "10.18.40.100 is up."
else
echo "10.18.40.100 is down!"
fi
[root@linux ~]# vim ping2.sh
ping -c1 10.18.40.100 &>/dev/null
if [ $? -eq 0 ];then
echo "10.18.40.100 is up." >>up.txt else
echo "10.18.40.100 is down!" >>down.txt fi [root@linux ~]# vim ping2.sh [root@linux ~]# chmod +x ping1.sh [root@linux ~]# ./ping2.sh
標準輸入:< 等價 0<bash
[root@linux ~]# mail alice //沒有改變輸入的方向,默認鍵盤
Subject: hello 1111
2222
3333 . EOT
[root@linux ~]# su - alice [alice@alice ~]$ mail Heirloom Mail version 12.5 7/5/10. Type ? for help. "/var/spool/mail/alice": 1 message 1 new >N 1 root Mon Jul 31 15:16 20/617 "hello"
[root@linux ~]# mail -s "test01" alice < /etc/hosts //輸入重定向,來自於文件
[root@linux ~]# grep 'root' //沒有改變輸入的方向,默認鍵盤,此時等待輸入...
yang sss sssrootssss.. sssrootssss..
[root@linux ~]# grep 'root' < /etc/passwd root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin
[root@linux ~]# dd if=/dev/zero of=/file1.txt bs=1M count=2 [root@linux ~]# dd </dev/zero >/file2.txt bs=1M count=20
[root@linux ~]# mysql -uroot -p123 < bbs.sql
[root@linux ~]# at now +5 min at> useradd yang99 at> <EOT> job 1 at Mon Jul 31 15:29:00 2017
[root@linux ~]# vim at.txt sudo useradd yang100 sudo useradd yang102 [root@liwei ~]# at now +2 min <a.txt job 2 at Mon Jul 31 15:27:00 2017
[root@linux ~]# echo "111" > file1.txt [root@linux ~]# cat file1.txt 111 [root@linux ~]# cat >file2.txt 111
222
333
444
^D [root@linux ~]# cat file2.txt
[root@linux ~]# vim create_file.sh
cat >file200.txt <<EOF 111
222
333 yyy ccc EOF [root@linux ~]# bash create_file.sh [root@linux ~]# cat file200.txt 111
222
333 yyy ccc
案例3: 腳本中利用重定向打印消息spa
[root@linux ~]# cat create_file.sh
cat <<-EOF 111
222
333 yyy ccc EOF [root@linux ~]# bash create_file.sh
111
222
333 yyy ccc
[root@liwei ~]# vim yang.sh
cat <<-EOF +------------------------------------------------+
| |
| ====================== |
| 虛擬機基本管理 v4.0 |
| by sky_king |
| ====================== |
| 1. 安裝KVM |
| 2. 安裝或重置CentOS-6.8 |
| 3. 安裝或重置CentOS-7.3 |
| 4. 安裝或重置RHEL-6.4 |
| 5. 安裝或重置Windows-7 |
| 6. 刪除全部虛擬機 |
| q. 退出管理程序 |
| |
+------------------------------------------------+ EOF
[root@linux ~]# ls; date &>/dev/null //但願兩條命令輸出都重定向 ??
[root@linux ~]# ls &>/dev/null; date &>/dev/null [root@linux ~]# (ls; date) &>/dev/null [root@linux ~]# (while :; do date; sleep 2; done) & //在後臺運行,但輸出依然在前臺終端
[1] 6229 [root@linux ~]# 2017年 08月 01日 星期二 10:12:42 CST 2017年 08月 01日 星期二 10:12:44 CST 2017年 08月 01日 星期二 10:12:46 CST 2017年 08月 01日 星期二 10:12:48 CST 2017年 08月 01日 星期二 10:12:50 CST [root@linux ~]# (while :; do date; sleep 2; done) &>date.txt & [root@linux ~]# tailf /date.txt 2017年 08月 01日 星期二 10:15:29 CST 2017年 08月 01日 星期二 10:15:31 CST 2017年 08月 01日 星期二 10:15:33 CST 2017年 08月 01日 星期二 10:15:35 CST 2017年 08月 01日 星期二 10:15:37 CST 2017年 08月 01日 星期二 10:15:39 CST 2017年 08月 01日 星期二 10:15:41 CST