Answers for "shell script to read data from text file"

11

read file using shell script

#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
  echo "$line"
done < "$input"
Posted by: Guest on February-22-2020
0

shell script to read data from text file

C:\Users\Admin\Desktop\Cpp Samples
Posted by: Guest on October-28-2021

Code answers related to "shell script to read data from text file"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language