PC-202302260912\Administrator 2023-08-03 17:31:08 +08:00
parent 125d03656e
commit d1dd543c60
1 changed files with 2 additions and 2 deletions

View File

@ -130,9 +130,9 @@ gm_send_package() {
if is_valid_ip "$channel"; then
unzip_package $channel $package $source_tar $destination_dir
else
cat "txt/$channel" | while read -r ip; do
while read -r ip; do
unzip_package $ip $package $source_tar $destination_dir
done
done < "txt/$channel"
fi
}