摘要:
#!/bin/bash CUR_PATH='/data/ftp/windows' path=$CUR_PATH for dir in $(ls $path) do echo $dir scp -P 22 -r $dir root@124.2*.x.x:/data/www/ftp/ done 阅读全文
摘要:
#!/usr/bin/python3 # -*- coding: utf-8 -*- # Created by iFantastic on 2020/8/7# 用于视频下载(B站等) import sys from you_get import common as you_get #导入you-ge 阅读全文