If I normally have to write:
echo `someCommand`
...in order for someCommand to be executed and its output to be sent to echo. Is there some way I can instead write:
echo someCommand
...and get the same effect - ie: no backticks?
|
If I normally have to write:
...in order for someCommand to be executed and its output to be sent to echo. Is there some way I can instead write:
...and get the same effect - ie: no backticks? |
||||
|
|
|
You can use
Instead of backticks, if it's just backticks you don't like. |
|||