Reputation: 3924
I would like to run something like this:
watch banner `my command`
The problem is - my command is evaluated only once, and I wanted it to evaluated each time...
Any ideas?
Thanks
Upvotes: 1
Views: 102
Reputation: 12393
Escape the backticks:
watch banner \`my command\`
.