Horje
read file using shell script Code Example
read file using shell script
#!/bin/bash
input="/path/to/txt/file"
while IFS= read -r line
do
  echo "$line"
done < "$input"




Shell

Related
enable setting in ubuntu Code Example enable setting in ubuntu Code Example
git command to add execute permission Code Example git command to add execute permission Code Example
git ssl certificate problem Code Example git ssl certificate problem Code Example
bash read a file line by line Code Example bash read a file line by line Code Example
how to install jest Code Example how to install jest Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9