J'ai un script bash, dans lequel j'exécute une ligne, je dors pendant tail -f
un certain temps, puis mon fichier journal pour vérifier qu'un certain modèle est vu, j'appuie sur ctrl + c pour sortir tail -f
, puis je passe à la ligne suivante jusqu'à ce que le script bash termine l'exécution :
Voici ce que j'ai fait jusqu'à présent:
#!/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
Le script fonctionne mais je reçois l'erreur, qu'est-ce qui doit changer / qu'est-ce que je fais mal?
./script.sh: line 1: continue: only meaningful in a `for', `while', or `until' loop