Source

更新作業:
./upgrade.sh filename.ext go
元のファイルは filename.ext.bakを変更する、同じfilename.ext.newをfilename.txtへ変更する。

...

Source

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

IT

@echo off
for/f “delims=ドライバ:\ ” %%a in (‘fsutil fsinfo drives^|more’) do echo %%a:
p ...

IT

crontab タスク
nginx ログ分割
mysqlバックアップ

ファイル1:cut_nginx_log.sh
#!/bin/bash
#nginxログファイルを分割する
#昨日 ...

IT

#::LoadWithPartialName(“MySql.Data”)
::LoadFrom(“C:\Program Files (x86)\MySQL\MySQL Connector N ...

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 ...

IT

nagiosでcpuのプラグインを検査する。

@echo off
rem 現在batの役割

echo ==================begin========================

IT

@echo off
rem 現在batの役割

echo ==================begin========================

cls
SET NGINX_PATH=D: ...

IT

SET NGINX_PATH=D:
SET NGINX_DIR=D:\web\nginx-1.3.11\
SET PHP_DIR=D:\web\php-5.4.11-nts-Win32-VC9-x86\

+ ...

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{ ...

Windows10

操作方法
1.「開始」 ->「Windows システムツール」 ->「コントロール パネル」をクリックします。

2.「日付、時刻、数値形式の変更」をクリックします。

3.「管理」タブをクリッ ...

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; ...