How to concatenate Path name to a variable??

I have the path name in a Variable

Ex:
$XML_PATH_FLAG = /ebs/appl/u00/universe01/inbound/universeorders

Now I have to pick up ALL XML files in this directory . In other words

I have to pick up ALL the files

/ebs/appl/u00/universe01/inbound/universeorders/F1.xml
/ebs/appl/u00/universe01/inbound/universeorders/F2.xml
/ebs/appl/u00/universe01/inbound/universeorders/F222.xml
/ebs/appl/u00/universe01/inbound/universeorders/F3.xml
.......
/ebs/appl/u00/universe01/inbound/universeorders/Fn.xml

so how do i this in the below code?

 
echo $XML_PATH_FLAG*.xml    ## how do I concatenate here?
for file in $XML_PATH_FLAG*.xml   ## how do I concatenate here?
 
do
 
--
--
done

Try

${XML_PATH_FLAG}/*.xml
1 Like

This really helped..