“BASH LEIA LIGUE” Respostas de código

Leia o arquivo usando script de shell

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

Bash para cada linha de arquivo

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

BASH LEIA LIGUE

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

Respostas semelhantes a “BASH LEIA LIGUE”

Perguntas semelhantes a “BASH LEIA LIGUE”

Mais respostas relacionadas para “BASH LEIA LIGUE” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código