scripts/fdroidcl-batch.sh
2024-03-25 20:28:52 +01:00

7 lines
115 B
Bash

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