Answers for "read -r bash from file"

0

read -r bash from file

#!/bin/bash
### Read File Line By Line with Bash Script File
filename="/home/ismail/names.txt"

while read line; do 
   echo $line; 
done < $filename
Posted by: Guest on March-26-2022
0

bash read -r option

#! /bin/bash

read –p “Please type your name” name

echo “Your name is” $name
Posted by: Guest on March-25-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language