Outlook Pop3 协议 收取邮件时间设置

  1. 打开outlook---文件----选项----高级---找到"发送和接收"

    image1

  2. 点击发送/接收按钮,按照需求设置时间。

image2

点击查看更多…

获取文件夹下所有文件的owner

将以下内容存为bat,在文件夹下运行

takeown /f * /a /r /d y

点击查看更多…

git 命令设置代理

Centos 设置定时任务

1

  1. $ yum install crontabs

    $ systemctl enable crond

    $ systemctl start crond

  2. vim /etc/crontab

    在配置中添加规则

    59 0 * * * root /usr/bin/sarg

    0 12 * * * root /usr/bin/sarg

    0 18 * * * root /user/bin/sarg

  3. $ crontab /etc/crontab
    

  4. $ crontab -l
    

    .. raw:: html
    

    </p>

点击查看更多…

Python PDF 分页

公司有超过100页的PDF需要,每一页都成为一个单独的PDF。

人工操作比较麻烦。

利用Python 可以进行操作:

脚本如下:

点击查看更多…