Please, help me with the following:
Let it be three files:
file-aaa.sh file-bbb.sh file-xxx.sh In a bash script I have variables
$a=aaa $b=bbb Now, I want to execute something like:
find . -name "file-[$a|$b].sh" and expect to get two files in output. What am I doing wrong?