?? l5.1b
字號(hào):
#printIt seems silly to use a temporary file when all that's reallyneeded is to take the output from one program like "ls",and pass it directly to the input of another, like "wc".One of the original contributions of Unix is a cleanway to do this, called a "pipe". You can connect twoprograms with a pipe like this: ls | wcand the output of the first program goes into the input ofthe second without any intervening file.Try this pair of commands in a pipeline.Try an ordinary "ls" command too, to verify that yougot the right answer. Then type "ready".#create X1#copyin#user#uncopyingrep 'ls *| *wc' .copy >/dev/null#log#next5.1c
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -