2ch特化型サーバ・ロケーション構築作戦 Part39at OPERATE
2ch特化型サーバ・ロケーション構築作戦 Part39 - 暇つぶし2ch623:root▲▲ ★
10/05/22 13:49:00 0
>>591 を E1 もとるように更新。

#! /bin/sh -
#
# $Id: run-smartctl.sh,v 1.8 2010/05/22 04:46:51 ch2qb6 Exp $
#
# Note: This program should be executed periodically.
# e.g. You can set as "5 * * * * /home/ch2xxxxxx/bin/run-smartctl.sh"
# in your crontab, the program will be executed hourly.

TZ=Asia/Tokyo; export TZ
PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/local/bin:/usr/local/sbin; export PATH

_SERVICE="${HOME}/public_html/_service"
_FILENAME="SMART-`date +%Y%m%d`.txt"

_CMDNAME="smartctl"
_OPTIONS="-d ata -A"
_DEVNAME="/dev/ad8"

_OUT1=`date +"%Y/%m/%d %H:%M:%S"`
_OUT2=`${_CMDNAME} ${_OPTIONS} ${_DEVNAME} | \
sed -n -e 's/^225/E1=/' -e 's/^232/E8=/' -e 's/^233/E9=/' -e /^E/p | \
awk '{
if ( $1 == "E1=" ) {
print $1$10;
} else {
print $1$4;
}
}' | sort`

echo ${_OUT1}" "${_OUT2} >> ${_SERVICE}/${_FILENAME}

exit 0


次ページ
続きを表示
1を表示
最新レス表示
レスジャンプ
類似スレ一覧
スレッドの検索
話題のニュース
おまかせリスト
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch