码迷,mamicode.com
首页 >  
搜索关键字:echo $    ( 13483个结果
zabbix三种邮箱告警配置
本地邮箱告警配置 配置本地邮箱告警前,我们要用到mail命令 所以先安装mail命令 [root@mf ~]# yum -y install mailx 使用mail命令发送邮箱 [root@mf ~]# echo "test" | mail -s "20210426" 18808843007@16 ...
分类:其他好文   时间:2021-04-27 14:43:11    阅读次数:0
win10 定时重启某个程序
1. bat程序: restartProxify.bat @echo off taskkill /f /im Proxifier.exe cd / cd "C:\Program Files (x86)\Proxifier" Proxifier.exe echo 成功重启 Proxifier.exe ...
分类:Windows程序   时间:2021-04-26 13:44:55    阅读次数:0
Linux 发送邮件
* * */1 * * /usr/sbin/ntpdate 172.17.14.90 18 * * * echo ''>/usr/local/nginx/logs/access.log0 14 * * * echo ''>/java/apache-tomcat-9.0.31/logs/catalin ...
分类:系统相关   时间:2021-04-24 11:54:24    阅读次数:0
linux shell while循环
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:系统相关   时间:2021-04-23 12:03:54    阅读次数:0
linux shell if语句
1、测试1 [root@centos7 test2]# ls a.txt [root@centos7 test2]# if [ -e a.txt ]; then echo "exist";else echo "no nxist"; fi exist [root@centos7 test2]# if ...
分类:系统相关   时间:2021-04-23 11:53:02    阅读次数:0
linux 系统中read命令
1、read从键盘读入 [root@centos7 test]# echo $a [root@centos7 test]# read a 123456 [root@centos7 test]# echo $a 123456 2、-p 参数 加入提示 [root@centos7 test]# unse ...
分类:系统相关   时间:2021-04-22 15:41:37    阅读次数:0
如何快速批量创建文本文档?
在要创建文档的文件夹里新建一个文本文档。 打开该文档,把下面的命令复制粘贴进去。 命令: @echo off for /L %%x in (1,1,10) do @echo %%x>%%x.txt 按下ctrl+S键保存该内容后,关闭该文档。 选择该文档,按下f2键进行重命名。把后缀名改为bat。 ...
分类:其他好文   时间:2021-04-22 15:18:09    阅读次数:0
linux 监控服务器流量
linux 监控服务器流量 #!/bin/bash ethn=$1 while true do RX_pre=$(cat /proc/net/dev | grep $ethn | sed 's/:/ /g' | awk '{print $2}') TX_pre=$(cat /proc/net/dev ...
分类:系统相关   时间:2021-04-21 12:03:54    阅读次数:0
?.nginx匹配不同的终端http_user-agent
####1.准备站点目录 for i in {android,iphone,firefox,chrome,default} ;do mkdir /html/terminal/${i} && echo $i >/html/terminal/${i}/index.html ;done ####2.准备配 ...
分类:Web程序   时间:2021-04-21 12:00:37    阅读次数:0
shell 时间
#不要加空格 time1=$(date) echo $time1 > /tmp/output.txt ...
分类:系统相关   时间:2021-04-21 11:49:37    阅读次数:0
13483条   上一页 1 ... 7 8 9 10 11 ... 1349 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!