Linux简介及Ubuntu安装 常见指令 系统管理命令 打包压缩相关命令 关机/重启机器 Linux管道 Linux软件包管理 vim使用 用户及用户组管理 文件权限管理 来自:http://www.weixuehao.com/archives/25 Linux简介及Ubuntu安装 Linux, ...
分类:
系统相关 时间:
2020-06-30 10:51:17
阅读次数:
63
1. 系统设置环境变量 ? ~ which python3 /Library/Frameworks/Python.framework/Versions/3.7/bin/python3 ? ~ echo $PATH /Users/abc/.nvm/versions/node/v8.13.0/bin:/ ...
分类:
编程语言 时间:
2020-06-29 15:45:09
阅读次数:
89
1、使用echo "" > file_name,直接将空字符串重定向并覆盖到目标文件 2、使用cat /dev/null > file_name,读取dev目录下的一个null文件,并重定向覆盖目标文件,类似方法1 3、使用vi或vim进入文件,在指令模式下(进入方法,输入冒号:)输入 %d,即可清 ...
分类:
系统相关 时间:
2020-06-29 15:34:00
阅读次数:
274
https://www.cnblogs.com/cute/archive/2011/08/26/2154137.html 1、判断字符串为空 if [ -z "$str" ]; then echo "empty string" fi 2、判断文件是否存在 if [ -f /home/builder/ ...
分类:
系统相关 时间:
2020-06-29 13:44:40
阅读次数:
107
文件和目录常用命令 目标 查看目录内容 ls 切换目录 cd 创建和删除操作 touch rm mkdir 拷贝和移动文件 cp mv 查看文件内容 cat more grep 其他 echo 重定向 > 和 >> 管道 | 01. 查看目录内容 1.1 终端实用技巧 1> 自动补全 在敲出 文件/ ...
分类:
系统相关 时间:
2020-06-29 13:25:09
阅读次数:
68
sql2slack对于slack 的处理是通过http 请求的,默认已经固定了格式了,以下是一个简单的修改,可以方便的支持钉钉webhook消息 而且具有通用性 需要修改部分 主要是关于使用resty 处理http 请求的部分,默认是写死的,可以修改为 job.go // _, err = rest ...
分类:
数据库 时间:
2020-06-29 11:45:19
阅读次数:
84
我们再配置IP SLA的时候,有些参数可能会有所混淆。 思科默认的这些参数值如下: frequency Frequency of an operation (60s) timeout Timeout of an operation(5000ms) threshold Operation thresh ...
分类:
其他好文 时间:
2020-06-28 18:31:03
阅读次数:
88
<template> <div> <el-form :model="dynamicValidateForm" ref="dynamicValidateForm" label-width="100px" class="demo-dynamic"> <el-form-item v-for="(domai ...
分类:
其他好文 时间:
2020-06-28 13:23:08
阅读次数:
293
try { $error = 'Always throw this error'; throw new Exception($error); // Code following an exception is not executed. echo 'Never executed';} catch ( ...
分类:
其他好文 时间:
2020-06-28 13:12:46
阅读次数:
66
一、脚本 #!/bin/bash #**************************************************** #Date: 2020-06-28 #Author: Damon Ye #FileName: UpTimeMonitor.sh #Description:Th ...
分类:
其他好文 时间:
2020-06-28 12:45:16
阅读次数:
74