“Bash Read File” Ответ

Читать файл с помощью скрипта оболочки

#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
  echo "$line"
done < "$input"
Thankful Tapir

избавиться от каждой строки файла

while read p; do
  echo "$p"
done <peptides.txt
Shy Shrike

Bash Read File

#if you want to display the contents of a file on the terminal, do:
$ cat filename.file
Lucas Gomes

Ответы похожие на “Bash Read File”

Вопросы похожие на “Bash Read File”

Больше похожих ответов на “Bash Read File” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования