I want to put the output of command in bash variable and then further use that variable in other command
Suppose i want something like this
ls | $(variable) |awk '/$variable/{print "here"}'
|
|
You can try:
Note 1: Note 2: The above command may fail since the output of Note 3: to avoid variable assignment polluting the current shell's environment, you can wrap the above command by parentheses, i.e. |
||||
|
|
|
To put command output into variable you can use following format in bash
|
|||
|
|
|
I don't know that you can easily do it in a single step like that, but I don't know why you'd pipe it to
|
|||||
|
|
|
Or
Back ticks Which is easier for me since it works in any shell or perl |
||||
|
|