shell 輸入輸出

1.文件描述符

文件描述符是一個(gè)非負(fù)整數(shù)紊册,可以唯一的標(biāo)示一個(gè)回話中打開的文件肴掷,每個(gè)過程最多打開9個(gè)文件描述符。shell會保存了3個(gè)文件描述符0,1,2

0  SEDIN 標(biāo)準(zhǔn)輸入
1 STDOUT 標(biāo)準(zhǔn)輸出
2 STDERR 標(biāo)準(zhǔn)錯(cuò)誤

默認(rèn)情況下STDOUT 和 STDERR 輸出到同一個(gè)位置-控制臺。
我們可以手動改變?nèi)纾?/p>

cat < testfile
ls -al > testfile
who >> testfile #追加

demo1 重定向錯(cuò)誤

master@master:~/shell$ ls -al ddd 2> test
master@master:~/shell$ ls
data  data1  script1  test  testfile
master@master:~/shell$ cat test
ls: 無法訪問ddd: 沒有那個(gè)文件或目錄

demo2 重定向錯(cuò)誤和標(biāo)準(zhǔn)輸出

ls -al test1 badfile 1> out1 2>out2
ls -al test1 badfile &> out #重定向到同一個(gè)位置

2.在腳本中重定向輸出

(1)臨時(shí)重定向
在重定向到文件描述符時(shí)揭朝,需要在文件描述符前面加&

echo "this is an erro Message"  >&2
#>&沒有空格

demo1

master@master:~/shell/output$ cat test1
#!/bin/bash

echo "this is an error message" >&2
echo "this is normal output"
master@master:~/shell/output$ ./test1 2> out
this is normal output
master@master:~/shell/output$ cat out
this is an error message

(2)永久重定向
用exec

master@master:~/shell/output$ cat test2
#!/bin/bash
#redirecting all output file to a file

exec 1>testout

echo "This is a test of reding all output"
echo "whiout having "

echo 2>testerr

echo "this is the normal message"
echo "this is the error message" >&2
master@master:~/shell/output$ ls
out  test1  test2  testerr  testout
master@master:~/shell/output$ cat testerr
master@master:~/shell/output$ cat testout
This is a test of reding all output
whiout having 

this is the normal message

3.在腳本中重定向輸入 exec 0< testfile

master@master:~/shell/output$ cat testfile
this is an error message
master@master:~/shell/output$ cat test3
#!/bin/bash
#redirecting file input

exec 0< testfile
count=1
while read line
do 
    echo "line #$count: $line"
    count=$[ $count + 1 ]
done

master@master:~/shell/output$ ./test3
line #1: this is an error message

4.創(chuàng)建自己的重定向

exec 3> test3out
exec 3>> test3out #追加

master@master:~/shell/output$ ./test4
this is on monitor
master@master:~/shell/output$ cat test3out 
add this to stored fiile
master@master:~/shell/output$ cat test4
#!/bin/bash
#using an alternative3 file descriptor

exec 3> test3out
echo "this is on monitor"
echo "add this to stored fiile" >&3

(2)重定向文件描述符

master@master:~/shell/output$ ./test5
now this is on the monitor
master@master:~/shell/output$ cat test4file 
this is store in fiole
master@master:~/shell/output$ cat test5
#!/bin/bash

exec 3>&1
exec 1>test4file 
echo "this is store in fiole"

exec 1>&3

echo "now this is on the monitor"

(3)創(chuàng)建輸入文件描述符
exec 6<&0
exec 0<testfile

master@master:~/shell/output$ ./test6
line #1 :this is an error message
are you done now?y
GoogBye
master@master:~/shell/output$ cat test6
#!/bin/bash
# redircting input file descriptor

exec 6<&0
exec 0<testfile
count=1
while read line
do
    echo "line #$count :$line"
    count=$[ $count + 1 ]
done
exec 0<&6
read -p "are you done now?" answer
case $answer in
Y|y) echo "GoogBye";;
N|n) echo "sorry is the end" ;;
esac

(4)創(chuàng)建讀寫文件描述符exec 3<> testfile

master@master:~/shell/output$ ./test7
read:this is an error message
master@master:~/shell/output$ cat testfile
this is an error message
this is a test lien
master@master:~/shell/output$ cat test7
#!/bin/bash
# create a read/write descriptor

exec 3<> testfile
read line <&3
echo "read:$line"
echo "this is a test lien" >&3

(4)關(guān)閉文件描述符
exec 3>&-

5.列出打開的文件描述符lsof
master@master:~/shell/output$ lsof -a -p $$ -d0,1,2
COMMAND  PID   USER   FD   TYPE DEVICE SIZE/OFF NODE NAME
bash    2388 master    0u   CHR 136,13      0t0   16 /dev/pts/13
bash    2388 master    1u   CHR 136,13      0t0   16 /dev/pts/13
bash    2388 master    2u   CHR 136,13      0t0   16 /dev/pts/13

master@master:~/shell/output$ ./test8
./test8: 行 6: textfile: 沒有那個(gè)文件或目錄
COMMAND  PID   USER   FD   TYPE DEVICE SIZE/OFF   NODE NAME
test8   2993 master    0u   CHR 136,13      0t0     16 /dev/pts/13
test8   2993 master    1u   CHR 136,13      0t0     16 /dev/pts/13
test8   2993 master    2u   CHR 136,13      0t0     16 /dev/pts/13
test8   2993 master    3w   REG    8,1        0 285618 /home/master/shell/output/test8file1
test8   2993 master    6w   REG    8,1        0 285622 /home/master/shell/output/test8file

#!/bin/bash

exec 3> test8file1
exec 6> test8file

exec 7< textfile

lsof -a -p $$ -d 0,1,2,3,6,7

6.阻止命令的輸出

ls -al > /dev/null
清空文件
cat /dev/null > filename

7.創(chuàng)建臨時(shí)文件

系統(tǒng)會回在啟動時(shí),自動刪除/temp下面的 文件

#創(chuàng)建臨時(shí)文件
mktemp test.XXXXX
#-t 會在tmp 目錄下創(chuàng)建文件
mktemp -t test.XXXX
#-d 創(chuàng)建臨時(shí)目錄
mktemp -d testDir.XXXXXX

8.T 型管道

tee filename

master@master:~/shell/output$ date | tee filename
2016年 11月 26日 星期六 14:56:21 CST
master@master:~/shell/output$ cat filename
2016年 11月 26日 星期六 14:56:21 CST

``
-a 追加

master@master:~/shell/output$ date | tee -a filename
2016年 11月 26日 星期六 14:56:46 CST
master@master:~/shell/output$ cat filename
2016年 11月 26日 星期六 14:56:21 CST
2016年 11月 26日 星期六 14:56:46 CST

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末色冀,一起剝皮案震驚了整個(gè)濱河市潭袱,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌锋恬,老刑警劉巖屯换,帶你破解...
    沈念sama閱讀 211,348評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異与学,居然都是意外死亡彤悔,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,122評論 2 385
  • 文/潘曉璐 我一進(jìn)店門索守,熙熙樓的掌柜王于貴愁眉苦臉地迎上來晕窑,“玉大人,你說我怎么就攤上這事卵佛⊙畛啵” “怎么了?”我有些...
    開封第一講書人閱讀 156,936評論 0 347
  • 文/不壞的土叔 我叫張陵截汪,是天一觀的道長疾牲。 經(jīng)常有香客問我,道長衙解,這世上最難降的妖魔是什么阳柔? 我笑而不...
    開封第一講書人閱讀 56,427評論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮蚓峦,結(jié)果婚禮上舌剂,老公的妹妹穿的比我還像新娘。我一直安慰自己暑椰,他們只是感情好霍转,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,467評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著干茉,像睡著了一般谴忧。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,785評論 1 290
  • 那天沾谓,我揣著相機(jī)與錄音委造,去河邊找鬼。 笑死均驶,一個(gè)胖子當(dāng)著我的面吹牛昏兆,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播妇穴,決...
    沈念sama閱讀 38,931評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼爬虱,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了腾它?” 一聲冷哼從身側(cè)響起跑筝,我...
    開封第一講書人閱讀 37,696評論 0 266
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎瞒滴,沒想到半個(gè)月后曲梗,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,141評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡妓忍,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,483評論 2 327
  • 正文 我和宋清朗相戀三年虏两,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片世剖。...
    茶點(diǎn)故事閱讀 38,625評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡定罢,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出旁瘫,到底是詐尸還是另有隱情祖凫,我是刑警寧澤,帶...
    沈念sama閱讀 34,291評論 4 329
  • 正文 年R本政府宣布境蜕,位于F島的核電站蝙场,受9級特大地震影響凌停,放射性物質(zhì)發(fā)生泄漏粱年。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,892評論 3 312
  • 文/蒙蒙 一罚拟、第九天 我趴在偏房一處隱蔽的房頂上張望台诗。 院中可真熱鬧,春花似錦赐俗、人聲如沸拉队。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽粱快。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間事哭,已是汗流浹背漫雷。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留鳍咱,地道東北人降盹。 一個(gè)月前我還...
    沈念sama閱讀 46,324評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像谤辜,于是被迫代替她去往敵國和親蓄坏。 傳聞我的和親對象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,492評論 2 348

推薦閱讀更多精彩內(nèi)容

  • 大多數(shù) UNIX 系統(tǒng)命令從你的終端接受輸入并將所產(chǎn)生的輸出發(fā)送回到您的終端丑念。一個(gè)命令通常從一個(gè)叫標(biāo)準(zhǔn)輸入的地方讀...
    姜淑均閱讀 228評論 2 3
  • 大多數(shù) UNIX 系統(tǒng)命令從你的終端接受輸入并將所產(chǎn)生的輸出發(fā)送回??到您的終端脯倚。一個(gè)命令通常從一個(gè)叫標(biāo)準(zhǔn)輸入的地...
    楓海閱讀 440評論 0 2
  • 大多數(shù) UNIX 系統(tǒng)命令從你的終端接受輸入并將所產(chǎn)生的輸出發(fā)送回??到您的終端妹蔽。一個(gè)命令通常從一個(gè)叫標(biāo)準(zhǔn)輸入的地...
    AsaGuo閱讀 262評論 0 0
  • 重定向命令表 注意 文件描述符 0 通常是標(biāo)準(zhǔn)輸入(STDIN),1 是標(biāo)準(zhǔn)輸出(STDOUT)挠将,2 是標(biāo)準(zhǔn)錯(cuò)誤輸...
    wenjieli閱讀 194評論 0 0
  • 一.Shell輸入功能 echo -necho -n "plaese input your name:"read ...
    張金宇閱讀 348評論 0 0