StackOverflow 文件 Bash 教程 陣列 將整個檔案讀入陣列 將整個檔案讀入陣列 Created: November-22, 2018 閱讀一步: IFS=$'\n' read -r -a arr < file 迴圈閱讀: arr=() while IFS= read -r line; do arr+=("$line") done Version >= 4.0 使用 mapfile 或 readarray(它們是同義詞): mapfile -t arr < file readarray -t arr < file 陣列插入功能字串中的陣列