1#!/bin/bash
23 cat file(待讀取的檔案) | while
read line4do
5 echo $line
6done
7
1#!/bin/bash
23 cat 'a.txt' | while
read line4do
5 echo $line
6 done
cat
'a.txt'
好像就可以了
cat主要有三大功能:
1.一次顯示整個檔案。$ cat filename
2.從鍵盤建立乙個檔案。$ cat > filename
只能建立新檔案,不能編輯已有檔案.
3.將幾個檔案合併為乙個檔案: $cat file1 file2 > file
引數:-n 或 --number 由 1 開始對所有輸出的行數編號
-b 或 --number-nonblank 和 -n 相似,只不過對於空白行不編號
-s 或 --squeeze-blank 當遇到有連續兩行以上的空白行,就代換為一行的空白行
-v 或 --show-nonprinting
例:把 textfile1 的檔案內容加上行號後輸入 textfile2 這個檔案裡
cat -n textfile1 > textfile2
把 textfile1 和 textfile2 的檔案內容加上行號(空白行不加)之後將內容附加到 textfile3 裡。
cat -b textfile1 textfile2 >> textfile3
cat /dev/null > /etc/test.txt 把test.txt檔案扔進垃圾箱
開啟新視窗並輸出內容
一 介紹 開啟新視窗並輸出內容可以使用open 方法和close 方法來實現。open 方法 該方法用來開啟文件輸出流,並接收write 方法或writeln 方法的輸出,此方法可以不指定引數。語法 obj document.open url name obj 用來儲存open 方法返回的值,obj...
開啟並讀取檔案
開啟並讀取檔案 file open r c users administrator desktop walden.txt r lines file.readlines words for line in lines tmp list line.split for word in tmp list 對...
指令碼列印頁面指定區域內容
1 思路,獲取指定區域的html元素,放到新頁面中,然後列印 還有一種是在html頁面中做標識,該方法適用與能控制頁面元素的情況下 2 如下 3 var newwindow window.open 組織結構圖列印視窗 blank var str document.getelementbyid svg...