摘要: #!/bin/bash #******************************************************************** #encoding -*-utf8-*- #Author: zhangshang #URL: http://blog.vservices 阅读全文
posted @ 2018-02-28 13:59 莫孟林 阅读(181) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash port=3306 mysql_user="root" mysql_pwd="centos" cmd_path="/app/mysql/bin" mysql_basedir="/mysqldb" mysql_sock="${mysql_basedir}/${port}/soc 阅读全文
posted @ 2018-02-28 13:58 莫孟林 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #! /bin/bash echo "- - -" > /sys/class/scsi_host/host0/scan echo "- - -" > /sys/class/scsi_host/host2/scan echo "- - -" > /sys/class/scsi_host/host1/s 阅读全文
posted @ 2018-02-28 13:57 莫孟林 阅读(232) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # #******************************************************************** #encoding -*-utf8-*- #Author: zhangshang #Date: 2018-01-13 #URL: h 阅读全文
posted @ 2018-02-28 13:56 莫孟林 阅读(343) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # chkconfig: 345 99 99 # description: this is a testsrv . /etc/init.d/functions lockfile=/var/lock/subsys/$0 start(){ if [ -e $lockfile ] 阅读全文
posted @ 2018-02-28 13:55 莫孟林 阅读(135) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash # #******************************************************************** #encoding -*-utf8-*- #Author: zhangshang #Date: 2017-11-25 #URL: h 阅读全文
posted @ 2018-02-28 13:36 莫孟林 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 常用脚本–tcp #!/bin/bash # #******************************************************************** #encoding -*-utf8-*- #Author: zhangshang #Date: 2017-11-2 阅读全文
posted @ 2018-02-28 13:34 莫孟林 阅读(659) 评论(0) 推荐(0) 编辑
摘要: 常用脚本–分区空间 #!/bin/bash # #******************************************************************** #encoding -*-utf8-*- #Author: zhangshang #Date: 2017-11- 阅读全文
posted @ 2018-02-28 13:34 莫孟林 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 简单的用ping计数,1次不通则认为目标主机不可达,如果需要多次计数可以修改下面代码中 ping -c1 这个参数 或者加一个for 循环 #!/bin/bash # #***************************************************************** 阅读全文
posted @ 2018-02-28 13:31 莫孟林 阅读(174) 评论(0) 推荐(0) 编辑
摘要: #! /bin/bash openssl rand -base64 8 #生成一个8位的随机数 cat /dev/urandom | tr -dc 'a-zA-Z' | head -c8 #同样生成一个8位的随机数 阅读全文
posted @ 2018-02-28 13:29 莫孟林 阅读(135) 评论(0) 推荐(0) 编辑