“Bash Lea el archivo en variable” Código de respuesta

Lea el archivo usando shell script

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

Bash Lea el archivo en variable

# Basic syntax:
FILELINES=`cat your_file.txt`

# Example usage:
# Say you have a file "your_file.txt" containing the following sample names
# and you want to iterate over them in a bash script:
SAMPLE1
SAMPLE2
SAMPLE3
# The bash script would look like:
SAMPLES = `cat your_file.txt`
for SAMPLE in $SAMPLES; do
	echo $SAMPLE
done
Charles-Alexandre Roy

Respuestas similares a “Bash Lea el archivo en variable”

Preguntas similares a “Bash Lea el archivo en variable”

Más respuestas relacionadas con “Bash Lea el archivo en variable” en Shell/Bash

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código