Tagged Questions

3
votes
4answers
2k views

How to glob variables in bash script?

When the following two lines of code are executed in a bash script, "ls" complains that the files don't exist: dirs=/content/{dev01,dev02} ls -l $dirs When I run the script with the -x option, it …