Source

#!/bin/bash
#数式はtrueなら、then部分を実行する
#もし終了はifなら fiで書く
#if
#if …;then
# …
#elif R ...

Source

OS:linux

#!/bin/bash

function err(){
if ;then
echo ” **”
fi
}

if ; then ...

Source

history | awk ‘{a++}END{for(i in a){print a ” ” i}}’ | sort -rn | head
2141 git
967 v ...

Source

#!/bin/sh
pingcmd(){
PRE=”server $1 Ping $2″
MAILADD=”XX@yahoo.co.jp”

ping ...

Source

linux環境でJBOSSとTomcatが再起動する。

#!/bin/bash

#this shell will be used to restart Jboss & tomcat

run ...

Source

#!/bin/bash
#backup mysql data
#Auther:arezone
#website:

DBDIR=/data/mysql
BACKDIR=/data/bak/my ...

Source

二つのファイルを処理する,一つは発送成功のケースです。もう一つは発送失敗場合、エラーログを書きこむ。

#!/bin/bash

#—————— ...

Source

1.あるポートの応用を殺す
port=9996
netstat -anp | grep $port | head -1 | awk ‘{print $7}’| awk ‘BEGIN{ ...

Source

cp nginx.sh/etc/init.d/nginx
chmod a+x/etc/init.d/nginx
chkconfig –add nginx
chkconfig nginx on

Source

#!/bin/bash

cat/dev/stdin | while read -r line
do
for word in $line
do
/usr/bin/printf $word; ...

Source

#!/bin/bash
##################################
haproxy_path=/usr/local/haproxy
haproxy_conf=/usr/local/ha ...

Source

@echo off
:start
set/p n=Please input your odd integer:
set/a p=n%%2
if %p% equ 0 echo Input error!&# ...

Source

#!/bin/bas
#
################################################################################
# process s ...

Source

oracleありかのサーバーの上でrootユーザーを使ってこのシナリオを実行する
$1:当oracleのユーザです

#!/bin/sh

function _oracleplus(){
su &# ...

Source

<p style=”width: 300px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;”> 省略してください! 省略 ...

Source

コードをsyslog_client.pyとして保存して、cmd.txtと同じデイlレクトリに入れる。
コマンド:python syslog_client.py -f cmd.txt -h 1.1.1.1
cmd.txt ...

Source

function isEmail($email) {
return strlen($email) > 6 && preg_match(“/^+@+(\.\w+)+$/”, $ema ...