|
The general format is
while :
do
cmd1
cmd2
..
sleep 60
done
In this case we'll sleep 60 seconds between executing commands.
For the second part (formatting the output), we'd need to know what you want it to look like.. but again rather generally:
..
cmd1 | filter_script >> somefile
..
|