shell下同時讀取多個檔案的方法

來源:互聯網
上載者:User

   1. 單個檔案的讀取

  在shell指令碼下,可以多種方式實現按行讀取檔案,如下:

  for line in `cat ${input_filename}`

  do

  echo $line

  done

  while read line

  do

  echo $line

  done < ${input_filename}

  其中第二種方式是將檔案重新導向到標準輸入中

  2. 多個檔案讀取方法

  那如何?同時多個檔案的讀呢?

  我們可以繼續利用bash中的檔案重新導向功能,將檔案重新導向到特定的檔案描述符中,文法如下:

  n

  n>file

  n>>file

  n<>file

  這裡的n代表開啟檔案file的檔案描述符,類似其他程式設計語言中的fd,如果沒有指定n,則其預設行為如下:

  

  >file #same as 1>file

  <>file #same as 0<>file

  我們可以通過exec命令來開啟所要重新導向的檔案:

  exec 7

  exec 8

  然後我們可以通過read命令來讀取對應檔案的內容:

  read data <&7 #使用符合是為了區分7是檔案描述符,而不是檔案名稱

  read data <&8

  關閉檔案

  exec 7

  exec 8

  多檔案讀取範例程式碼如下:

  readfiles() {

  local FD1=7

  local FD2=8

  local file1=$1

  local file2=$2

  local count1=0

  local count2=0

  local eof1=0

  local eof2=0

  local data1

  local data2

  # Open files.

  exec 7<$file1

  exec 8<$file2

  while [[ $eof1 -eq 0 || $eof2 -eq 0 ]]

  do

  if read data1<&$FD1; then

  let count1++

  printf "%s, line %d: %sn" $file1 $count1 "$data1"

  else

  eof1=1

  fi

  if read data2 <&$FD2; then

  let count2++

  printf "%s, line %d: %sn" $file2 $count2 "$data2"

  else

  eof2=1

  fi

  done

  }

  #read file1 and file2

  readfiles file1 file2

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.