Horje
read -r bash from file Code Example
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
bash read -r option
#! /bin/bash

read –p “Please type your name” name

echo “Your name is” $name




Shell

Related
ubuntu can't detect usb Code Example ubuntu can't detect usb Code Example
solidity optimizer runs Code Example solidity optimizer runs Code Example
snap uninstall docker Code Example snap uninstall docker Code Example
awk line range Code Example awk line range Code Example
ssh to a machine and run a command Code Example ssh to a machine and run a command Code Example

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