assing command to a variable code example
Example: assing command to a variable
abc=`ls -l | awk '{print($9) }'`
echo $abc
file.txt file2.txt file3.txt
abc=`ls -l | awk '{print($9) }'`
echo $abc
file.txt file2.txt file3.txt