一、配合Oneindex使用
配置on-bt-download-complete=
使用
#!/bin/bash
path=$3
downloadpath='/usr/local/download'
if [ $2 -eq 0 ]
then
exit 0
fi
while true; do
filepath=$path
path=${path%/*};
if [ "$path" = "$downloadpath" ] && [ $2 -eq 1 ]
then
/usr/bin/php /data/oneindex/one.php upload:file "$filepath" /upload/
rm -rf "$filepath"
exit 0
elif [ "$path" = "$downloadpath" ]
then
/usr/bin/php /data/oneindex/one.php upload:folder "$filepath"/ /upload/"${filepath##*/}"/
rm -rf "$filepath"/
exit 0
fi
done
二、使用LightUploader
GitHub开源地址:https://github.com/gaowanliang/LightUploader
详细使用教程GitHub上作者就已经写的和详细了,这里只提供脚本
- 我的安装位置是/usr/local/sbin/driveuploader
#!/bin/bash
path=$3
downloadpath='/usr/local/download'
if [ $2 -eq 0 ]
then
exit 0
fi
while true; do
filepath=$path
path=${path%/*};
if [ "$path" = "$downloadpath" ] && [ $2 -eq 1 ]
then
/usr/local/sbin/driveuploader/LightUploader -c /usr/local/sbin/driveuploader/tengwait.json -t 3 -f "$filepath" -r /upload/
rm -rf "$filepath"
exit 0
elif [ "$path" = "$downloadpath" ]
then
/usr/local/sbin/driveuploader/LightUploader -c /usr/local/sbin/driveuploader/tengwait.json -t 3 -f "$filepath" -r /upload/"${filepath##*/}"/
rm -rf "$filepath"/
exit 0
fi
done
转载请注明来源