SecureCRT 단축기에 엔터효과
2010. 8. 9. 15:02ㆍ99. 정리전 - IT/13. Unix 얇팍지식
SecureCRT
menu -> Tools -> Keymap Editor...
연다.
다음을 친다.
Send String내용
오늘 실행된 로그의 마지막 줄만 꺼집어 보기
※ antChecker.sh 내용
menu -> Tools -> Keymap Editor...
연다.
다음을 친다.
Send String내용
cd /app/builder;clear;./antChecker.sh;\r\n
※ 콜론으로 구분하며 연속콤보를 구사한다.오늘 실행된 로그의 마지막 줄만 꺼집어 보기
※ antChecker.sh 내용
#!/bin/sh
find ./ -mtime -2 -name 'builder_*' | while read line
do
echo $line
tail -2 $line
echo ""
# tail -2 $line | grep SUCCESS > /dev/null
# [ $? -eq 0 ] && echo "성공" || echo "마케이누"
done
exit 0
find ./ -mtime -2 -name 'builder_*' | while read line
do
echo $line
tail -2 $line
echo ""
# tail -2 $line | grep SUCCESS > /dev/null
# [ $? -eq 0 ] && echo "성공" || echo "마케이누"
done
exit 0