バックグラウンドでコマンドを無限ループで実行するスクリプト
<SOMETHING ELSE AT START OF SCRIPT>
cmd='while true;
do
ps aux | head;
sleep 1;
done > $FILE'
ssh root@$SERVER $cmd &
...
...
<SOME OTHER TASKS>
...
...
( at the end of this script, how to kill the above snippet executing in remote server)
[ kindly note i dont want to wait as the while loop is infinite ]
stackoverflow からいくつかの投稿を読んで試してみましたが、この問題の正確な解決策を見つけることができませんでした。