预备知识: $(command):获取command命令执行后的结果。 \后接一个数字表示ascii码等于该值的字符 $''引用内容展开,执行单引号内的转义内容(单引号原本是原样引用的),这种方式会将引号内的一个或者多个[]转义后的八进制,十六进制值展开到ASCII或Unicode字符. $((1+ ...
分类:
其他好文 时间:
2021-01-01 11:42:07
阅读次数:
0
查看 python3版本 python3 --version 安装python3.7 sudo apt-get install python3.7 报错如下: Reading package lists... Done Building dependency tree Reading state i ...
分类:
编程语言 时间:
2020-12-30 10:44:34
阅读次数:
0
JVM调优问题简单总结 jvm调优在我看来就是扩扩内存,修改一下虚拟机运行参数,再不行换个垃圾回收器,比如G1什么的。 但是,对运行时问题的定位却是个大问题,今天就来总结一下,这两天学习的关于jvm调优的一些查用的排查方式 CPU突然飙升怎么排查 因为在服务器上不只有Java进程还有其他进程,所以需 ...
分类:
其他好文 时间:
2020-12-29 11:44:09
阅读次数:
0
How to parse command line arguments Passing in arguments via the command line is an extremely basic programming task, and a necessity for anyone tryin ...
分类:
Web程序 时间:
2020-12-29 11:32:27
阅读次数:
0
curl is a a command line tool that allows to transfer data across the network. It supports lots of protocols out of the box, including HTTP, HTTPS, FT ...
分类:
Web程序 时间:
2020-12-29 11:24:49
阅读次数:
0
天天都在说优化Dockerfile。到底怎么优化,优化后的检验指标又是什么?没有考虑清楚行动目的,隔空放炮,必然徒劳无功。笔者最近准备在CI上增加安全检测,在分析案例样本的时候,找到了比较流行的struts2漏洞,其中S2-052远程代码执行漏洞的利用方式就是在POST请求中添加恶意代码或命令。如Demo片段所示。<command><string>touch</str
分类:
系统相关 时间:
2020-12-25 13:21:15
阅读次数:
0
date: 2020-11-30 15:23:00 updated: 2020-12-07 15:35:00 Docker 深入学习 官方帮助文档 1. 命令 $ docker --help 用法: docker COMMAND A self-sufficient runtime for conta ...
分类:
其他好文 时间:
2020-12-24 11:43:36
阅读次数:
0
参数必须要传,不用也要传空 set(getdep1 ${CMAKE_SOURCE_DIR}/clone.sh) execute_process(COMMAND ${getdep1} "") set(MAKE_CMD "${CMAKE_CURRENT_SOURCE_DIR}/makeHeaders.s ...
分类:
其他好文 时间:
2020-12-23 11:53:16
阅读次数:
0
# QT-QPushButton QPushButton Class | Header: | #include <QPushButton> || | || qmake:(模块) | QT += widgets || Inherits:(继承) | [QAbstractButton](qabstrac ...
分类:
其他好文 时间:
2020-12-22 12:34:05
阅读次数:
0
Go Exec执行命令 执行命令并获得输出结果 最简单的例子就是运行ls -lah并获得组合在一起的stdout/stderr输出。 func main() { cmd := exec.Command("ls", "-lah") out, err := cmd.CombinedOutput() if ...
分类:
其他好文 时间:
2020-12-22 12:23:15
阅读次数:
0