In my gitlab pipeline I want to execute the following command pattern:
command <some-options> --filter 'eq(name,"
HMEQ_ABT.flw
")'
Instead of static filename: HMEQ_ABT.flw I'd like to use the variable value e.g. $FileName
It should be like:
command <some-options> --filter 'eq(name,"
$FileName
")'
but $FileName is not substituted with HMEQ_ABT.flw value.
How can insert variable name to get its value instead, please?