Tôi có một tập lệnh bash, trong đó tôi thực thi một dòng, đôi khi ngủ và sau đó tail -f
tập tin nhật ký của tôi để xác minh một mẫu nhất định được nhìn thấy, tôi nhấn ctrl + c để thoát ra tail -f
và sau đó di chuyển đến dòng tiếp theo cho đến khi tập lệnh bash kết thúc thực thi :
Đây là những gì tôi đã làm cho đến nay:
#!/bin/bash
# capture the hostname
host_name=`hostname -f`
# method that runs tail -f on log_file.log and looks for pattern and passes control to next line on 'ctrl+c'
echo "==================================================="
echo "On $host_name: running some command"
some command here
echo "On $host_name: sleeping for 5s"
sleep 5
# Look for: "pattern" in log_file.log
# trap 'continue' SIGINT
trap 'continue' SIGINT
echo "On $host_name: post update looking for pattern"
tail -f /var/log/hadoop/datanode.log | egrep -i -e "receiving.*src.*dest.*"
# some more sanity check
echo "On $host_name: checking uptime on process, tasktracker and hbase-regionserver processes...."
sudo supervisorctl status process
# in the end, enable the balancer
# echo balance_switch true | hbase shell
Kịch bản hoạt động nhưng tôi gặp lỗi, những gì cần thay đổi / tôi đang làm gì sai?
./script.sh: line 1: continue: only meaningful in a `for', `while', or `until' loop