码迷,mamicode.com
首页 >  
搜索关键字:os log    ( 227403个结果
Python3 检查并去除文件空格
1 #!/usr/bin/python3 2 #coding=utf-8 3 4 import sys 5 import os 6 import re 7 8 def renamefile(name1,name2): 9 os.rename(name1,name2) 10 11 def checkf ...
分类:编程语言   时间:2021-05-25 17:42:30    阅读次数:0
可选链操作
<script> function main(config){ // const dbHost = config && config.db && config.db.host; const dbHost =config?.db?.host; console.log(dbHost); // 192.1 ...
分类:其他好文   时间:2021-05-25 17:41:36    阅读次数:0
滑块验证码
滑块验证码https://www.cnblogs.com/lshedward/p/10381146.html ...
分类:其他好文   时间:2021-05-25 17:38:36    阅读次数:0
【Python函数与模块学习记录3】标准模块与第三方模块
1、OS模块 函数/变量 描述 os.environ 系统的环境变量 os.system(command) 在子shell中执行操作系统命令, 注意使用双引号,没有加入系统环境变量的应用,要使用全路径,否则直接使用可执行程序如pycharm64.exe os.sep 路径中使用的分隔符 os.pat ...
分类:编程语言   时间:2021-05-24 17:23:30    阅读次数:0
input模糊搜索选择
https://blog.csdn.net/weixin_44882864/article/details/102958973 https://blog.csdn.net/weixin_43078114/article/details/103511970 ...
分类:其他好文   时间:2021-05-24 16:51:49    阅读次数:0
nginx日志文件按天记录定时清理循环记录
问题 nginx日志默认记录在一个文件access.log中,时间长了会导致日志文件特别大,甚至磁盘占满。 解决方案 使用以下方法,将access.log文件每天一个,然后清过15天以前的文件。 方法 创建clearNginxLog.sh文件 #!/bin/bash LOG_PATH="/data/ ...
分类:其他好文   时间:2021-05-24 16:43:57    阅读次数:0
数组去重
数组去重不仅在工作中经常使用,也会在面试中经常问到,现在有几种常用的方法: 比如要将数组去重: const arr = [1, 2, 3, "1", 2, undefined, undefined, "undefined", NaN, NaN]; 方法一: 直接通过indexOf 或者 includ ...
分类:编程语言   时间:2021-05-24 16:35:21    阅读次数:0
for循环中断的问题
for循环中使用retun后会直接中断后面的代码执行,类似于map等es6数组方法retun后不会影响,只测试了map,其它未知 item.employeeList.map(item=>{ if(avatorList.length>3) return //////此处中断,依旧会输出111 if(i ...
分类:其他好文   时间:2021-05-24 16:17:18    阅读次数:0
mysql8.0安装
安装教程: https://www.cnblogs.com/laumians-notes/p/9069498.html https://blog.csdn.net/weixin_42869365/article/details/83472466 启动 net start mysql 登录 (1234 ...
分类:数据库   时间:2021-05-24 16:08:31    阅读次数:0
Doris 集群部署
环境:Ubuntu16.04 jdk8 doris编译: ## 1. 开启```bashdocker run -d -it \--name doris \--net=host \-v /volume1/doris/incubator-doris:/root/incubator-doris/ apac ...
分类:其他好文   时间:2021-05-24 15:57:19    阅读次数:0
227403条   上一页 1 ... 31 32 33 34 35 ... 22741 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!