Shell 스 크 립 트 는 하 드 디스크 공간 과 표 공간의 사용 현황 을 통계 하고 메 일 로 알려 줍 니 다.
#/bin/bash
# ,
#
source /home/oracle/.bash_profile
# ip
ip=`/sbin/ifconfig eth0 | grep Bcast | cut -d : -f 2 | cut -d " " -f 1`
#
cd /home/oracle/shell/
#
rm -rf $ip.txt
#
echo -e " !
$ip :
" >> $ip.txt
echo " :" >> $ip.txt
/bin/df -Th >> $ip.txt
#
echo -e "
:" >> $ip.txt
sqlplus -s scott/tiger << EOF >> $ip.txt
set feed off
set lines 400
set pages 900
col for a20
select x.tablespace_name , , , , , , ,
from (select TABLESPACE_NAME,round(sum(BYTES) / 1024 / 1024 / 1024, 9) ,
round(sum(MAXBYTES - BYTES) / 1024 / 1024 / 1024,2) ,
round(sum(MAXBYTES) / 1024 / 1024 / 1024) ,
to_char(round(sum(BYTES) / sum(MAXBYTES) * 100, 2), '990.99') || '%'
from dba_data_files
group by TABLESPACE_NAME) x,
(select a.tablespace_name,
round(a.bytes / 1024 / 1024 / 1024, 9) ,
round(b.bytes / 1024 / 1024 / 1024, 9) ,
to_char(round(a.bytes / (a.bytes + b.bytes) * 100, 2),
'990.99') || '%'
from sys.sm\$ts_used a, sys.sm\$ts_free b
where a.tablespace_name = b.tablespace_name) y
where x.tablespace_name = y.tablespace_name
order by 1;
exit
EOF
#
mutt -s "$ip " -- [email protected] < $ip.txt
운영 체제 의 정시 작업 에 추가:
매주 5 시 30 분 에 이 스 크 립 트 를 실행 합 니 다.
[oracle@ ~]$ crontab -l
30 15 * * 5 /home/oracle/shell/weekcheck.sh
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Shell alias 명령에 별칭을 설정하는 방법명령에 별명을 설정하면 명령의'작은 이름'으로 삼을 수 있지만, 이렇게 하는 것이 무슨 의미가 있습니까? 이때 별명이 작용할 수 있다.vim 명령의 별명을vi라고 정의하면 이후에 실행된vi 명령은 실제로vim 명령을...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.