获取文件夹下所有文件的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 可以进行操作:

脚本如下:

点击查看更多…

当前文件夹下PDF文件页码计数

import PyPDF2
import time

import os


file_name = os.listdir(os.getcwd()) # 获取当前路径
file_typ = ".pdf"
pdf_list = []
b = 0
totalpag = 0
for n in file_name:
    if file_typ in n:         #判断是否是PDF文件
        print("Found PDF file:" + n)
        pdf_list.append(n)
        pdfReader = PyPDF2.PdfFileReader(n …
点击查看更多…