The following command which I want to use to monitor the number of files in a directory does not show the required value dynamically.
watch "echo \`ls -l| wc -l\`"
However following command works well.
watch "ls -l| wc -l"
What is the explanation for this behavior?
It's because the shell expands backticks before
watch
is ever executed. If you useset -x
, you'll see that the command that actually ends up callingwhich explains why it's always the same.
You can escape the
`
with a backslash to pass it literally:Or more easily by using single quotes, which inhibit all expansions: