7 lines
115 B
Bash
7 lines
115 B
Bash
#!/bin/bash
|
|
while IFS= read -r line; do
|
|
echo "Text read from file: $line"
|
|
fdroidcl install $line
|
|
done < "$1"
|
|
|