linux寫檔案有5種方法,分別是:1、透過touch指令建立一個檔案;2、使用vi和vim指令建立一個檔案;3、使用「>」和「>> 」符號建立檔案;4、使用cp指令建立檔案;5、使用cat建立檔案。
本教學操作環境:linux5.9.8系統、Dell G3電腦。
Linux建立檔案的5種方式
1、touch
1.1 建立一個檔案
<p>touch yyTest.ini<br></p>
1.2 同時建立兩個檔案
<p>touch test1.txt test2.txt<br></p>
1.3 批次建立檔案(如建立2000個檔案)
<p>touch test{0001..2000}.txt<br></p>
1.4 變更檔案 yyTest.ini時間為目前時間(yyTest.ini已存在)
<p>touch yyTest.ini<br></p>
#
<p>vi test.txt<br>vim touch.txt<br></p>
<p>> test.ini<br></p>
3.2 >>追加在原始檔案結尾,不會覆寫原始檔案的內容 3.3 直接以>建立空白檔案
<p>ls > test.ini<br>ls >> test.ini<br></p>
<p>ps -ef | grep java >test.ini<br>ps -ef | grep java >>test.ini<br></p>
<p>echo $PATH > test.ini<br>echo $PATH >> test.ini<br></p>
<p>cat > test.ini<br>cat >> test.ini<br></p>
<p>cat >> test.ini <<eof<br/>2<br/>2<br/>2<br/>eof<br/></p>
<p>cat >> test.ini <<exit<br>1<br>1<br>exit<br></p>
rrreee相關推薦:《Linux影片教學
》
以上是linux 寫檔案有幾種方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!