-
文件合并 1cat info.log error.log > merge.log.bak 2cp merge.log.bak merge.log 文件拆分 文件截取 linux分片切割CSV文件_linux 如何快速把csv文件拆分成多个-CSDN博客
阅读更多 -
WindTerm 无法认证 WindTerm客户端,取消 “会话设置 -> SSH -> 验证 -> 尝试键盘交互认证” 可已正常连接。 安装 OpenSSH Server 1$ apk update 2$ apk add openssh-server openssh 1; /etc/ssh/sshd_config 2 3# 开放Root登录
阅读更多 -
systemctl命令 1systemctl list-units ##列出当前系统服务的状态 2systemctl list-unit-files ##列出服务的开机状态 3systemctl status sshd ##查看指定服务的状态 4systemctl stop sshd ##关闭指定服务 5systemctl start sshd ##开
阅读更多 -
command 指令 1# 字符串方式2command:/bin/bash -c "cp /app/dtest/config.default.yml /app/config.yml && python -u /app/dtest/tcc.py"3# 另一种方式4command:["/bin/bash",
阅读更多 -
0、基础设置 1# 查看代理 2git config --global --get http.proxy 3git config --global --get https.proxy 4# 设置代理 5git config --global http.proxy http://[username:passwrod@]ip or URL:port 6git config --global https.proxy http://[username:passwrod@]ip or URL:port 7# 取消代理 8git config --global --unset http.proxy 9git config --global …
阅读更多 -
删除冗余信息 1sed -i 's/.a2p_replyclient_log.[infoerror].[0-9].log.gz://' merge.log \ 2&& sed -i 's/org.springframework.amqp.rabbit.RabbitListenerEndpointContainer.* - //' merge.log \ 3&& sed -i '/.send 1 time for the url is ./d' merge.log \ 4&& sed -i '/.*redis …
阅读更多