在 qB 种子界面选中需要迁移的种子,然后右击复制哈希值并保存到文件 hash.txt,这个文件就是待会需要迁移的种子。
此脚本文件保存为 qb_hash_match.sh
#!/bin/bash
target_values=$(cat hash.txt)
mkdir tempdir
for value in $target_values
do
cp $value.torrent tempdir
cp $value.fastresume tempdir
done
将 hash.txt 和 qb_hash_match.sh 这两个文件放到需要迁移的 qB 种子 BT_backup 目录下,先运行如下命令转换为 linux 系统的换行符。
sed -i 's/\r//g' hash.txt
sed -i 's/\r//g' qb_hash_match.sh
然后直接运行脚本
chmod +x qb_hash_match.sh
./qb_hash_match.sh
最后将生成的 tempdir 目录下的文件复制到目标 qB 的 BT_backup 目录即可。当然了,前提是你已经先将对应的文件转移到目标 qB 所映射的目录下才能开始做种。
评论区