scripts/fdroidcl-batch.sh

7 lines
115 B
Bash
Raw Normal View History

2024-03-25 19:28:52 +00:00
#!/bin/bash
while IFS= read -r line; do
echo "Text read from file: $line"
fdroidcl install $line
done < "$1"