命令行 輸出文件 (cat)

2021-09-15 15:01 更新

附錄A-練習(xí)13:輸出文件 (cat)

你要為這節(jié)練習(xí)做更多的準(zhǔn)備工作,你要習(xí)慣于在一個程序中創(chuàng)建文件,然后通過命令行訪問這個文件。使用上節(jié)練習(xí)中用過的文本編輯器,新建一個叫做 test2.txt的文件,這一次直接將他保存在你的temp目錄中.

做到這些

Linux/OSX

$ less test2.txt
[displays file here]
$ cat test2.txt
I am a fun guy.
Don't you know why?
Because I make poems,
that make babies cry.
$ cat test.txt
Hi there this is cool.
$

Windows

> more test2.txt
[displays file here]
> cat test2.txt
I am a fun guy.
Don't you know why?
Because I make poems,
that make babies cry.
> cat test.txt
Hi there this is cool.
>

請記住,當(dāng)我說 [displays file here]的時候,我只是縮寫了命令的真實(shí)輸出,所以我沒有給你展示確切的一切。

你應(yīng)該學(xué)到的

你喜歡我的詩嗎?你已經(jīng)知道第一個命令,我只是讓你檢查你的文件是否存在。然后你使用cat輸出該文件到屏幕上。這個命令會將整個文件內(nèi)容不分頁不間斷的輸出到屏幕上。為了證明這一點(diǎn),我需要你同樣使用該命令輸出I test.txt,這個文件會輸出一大堆文字。

更多練習(xí)

  • 創(chuàng)建更多的文本文件,并使用cat命令輸出文件內(nèi)容。
  • Unix: 嘗試命令cat test.txt test2.txt 看看它做了什么。
  • Windows: 嘗試命令 cat test.txt,test2.txt 看看它做了什么。
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號