首页
学习
活动
专区
工具
TVP
发布

sktj

专栏作者
1542
文章
1904639
阅读量
34
订阅数
vsftp日志配置
1、开始vsftp记录日志。修改/etc/vsftpd/vsftpd.conf 如下:
用户5760343
2022-05-24
3.3K0
.NET Timer控件基础用法
System.Timers.Timer aTimer =new System.Timers.Timer();  
用户5760343
2022-05-24
6220
Ansible文件操作 file模块(学习笔记三)
1、修改文件属性, ansible all -m file -a "path=/root/test.sh owner=test group=test mode=0644"
用户5760343
2022-05-24
5140
Jenkins perforce插件(学习笔记八)
Perforce Plugin,代码管理,在Jenkins的管理页面的插件管理下面安装Perforce插件,然后重启Jenkins。
用户5760343
2022-05-24
5760
mysql管理之道
添加jemalloc管理内存 [mysqld_safe] malloc-ib=/usr/lib64/libjemalloc.so
用户5760343
2022-05-20
3540
oracle dba工作笔记:运维、数据迁移与性能调优
groupadd oinstall groupadd dba useradd -g oinstall -G dba oracle passwd oracle
用户5760343
2022-05-20
4420
(Logstash)ELK stack 权威指南 笔记
ELK stack:elasticsearch logstash kibana logstash 需要安装java yum安装
用户5760343
2022-05-19
2450
(Logstash)实战Elasticseartch、Logstash、Kibana
用json格式输入输出 output{ stdout{codec => json} } output{ port=>1234 codec=>json_lines{charset=>UTF-8} } stdout{codec=>rubydebug} codec=>plain
用户5760343
2022-05-19
4500
python学习手册(第四版)(语法与语句)
3 append sort reserve 修改完列表后返回的是None 4 print(a,b,c,seq=',') 逗号为分隔号 print(a,b,c,end='....\n') 标准输出到文件
用户5760343
2022-05-14
2920
python swig封装c/c++成Python库
//------------------------------------------------------------------------
用户5760343
2022-05-14
5340
python参考手册(输入输出)
1\参数设置 import optparse p=optparse.OptionParser() p.add_option("-o",action="store",dest="outfile") p.set_defaults(debug=False)
用户5760343
2022-05-14
3830
python system
sys.platform,sys.maxsize,sys.version if sys.platform[:3]=='win': sys.path sys.modules sys.exc_info() sys.argv sys.stdin sys.stdout sys.stderr sys.exit()
用户5760343
2022-05-13
5530
python 重定向输入输出流 脚本
file-like objects that save standard output text in a string and provide
用户5760343
2022-05-13
6190
bat 静默安装python37、vc++、证书 脚本
@ECHO off echo »ñÈ¡AdministratorȨÏÞ cacls.exe "%SystemDrive%\System Volume Information" >nul 2>nul if %errorlevel%==0 goto Admin if exist "%temp%\getadmin.vbs" del /f /q "%temp%\getadmin.vbs" echo Set RequestUAC = CreateObject("Shell.Application")>"%t
用户5760343
2022-05-13
5470
python 比较两个目录 脚本
""" ################################################################################ Usage: "python diffall.py dir1 dir2". Recursive directory tree comparison: report unique files that exist in only dir1 or dir2, report files of the same name in dir1 and dir2 with differing contents, report instances of same name but different type in dir1 and dir2, and do the same for all subdirectories of the same names in and below dir1 and dir2. A summary of diffs appears at end of output, but search redirected output for "DIFF" and "unique" strings for further details. New: (3E) limit reads to 1M for large files, (3E) catch same name=file/dir, (4E) avoid extra os.listdir() calls in dirdiff.comparedirs() by passing results here along. ################################################################################ """
用户5760343
2022-05-13
7360
python 回归测试脚本
""" ################################################################################ Test a directory of Python scripts, passing command-line arguments, piping in stdin, and capturing stdout, stderr, and exit status to detect failures and regressions from prior run outputs. The subprocess module spawns and controls streams (much like os.popen3 in Python 2.X), and is cross-platform. Streams are always binary bytes in subprocess. Test inputs, args, outputs, and errors map to files in subdirectories.
用户5760343
2022-05-13
7450
python 上传所有文件到FTP服务器 脚本
import os, sys, ftplib from getpass import getpass from mimetypes import guess_type
用户5760343
2022-05-13
1.9K0
python 互联网编程
zope\plone\pylons\web2py\cherrypy\webware:web框架 pyjamas soap:web service Ironpython 1\ socket(AF_INET,SOCK_STREAM) SOCK_DGRAM AF_UNIF sobj.bind() sobj.listen con,dre=sobj.accept() con.receive() con.send() con.close() socket(xx) sobj.connect()
用户5760343
2022-05-13
3540
python swig 调用C/C++接口
当你觉得python慢的时候,当你的c/c++代码难以用在python上的时候,你可能会注意这篇文章。swig是一个可以把c/c++代码封装为python库的工具。(本文封装为python3的库)
用户5760343
2022-05-13
6080
bootstrap menu 常用样式 2
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 实例 - 带有下拉菜单的标签页</title> <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body>
用户5760343
2022-01-10
5410
点击加载更多
社区活动
RAG七天入门训练营
鹅厂大牛手把手带你上手实战
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档