duduamar
duduamar

Reputation: 3924

linux watch banner on refreshed output

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

Answers (1)

Patrick B.
Patrick B.

Reputation: 12393

Escape the backticks:

watch banner \`my command\`

.

Upvotes: 1

Related Questions