Suppose we have a string variable in python and we want to concatenate it with other string in the shell script. For example, suppose the variable is a base address. We want to run a command, rm for example, over a file in the base directory, like the following:
base_address = "<addr>"
!echo "${base_address}/file_name.xml"
But it doesn't work, here (in contrast to the bash). It's the same story for "$base_address/file_name.xml". What is the solution?