Tagged Questions
3
votes
1answer
769 views
Why use parens instead of backticks for executing a command 'in situ'?
I have recently started to shift my shell scripting from utilizing backticks to parens to execute a command in situ and use the results in something else. Eg:
for line in `cat file`
do
echo ...