From the following results it appears the *.rar is being taken literally, and not expanded. man glob gives no detail as to how it expands. Would someone kindly explain why?
~/Films $ls "Night of the Living Dead (1968)/" Night_of_the_Living_Dead_1968.par2 Night_of_the_Living_Dead_1968.part23.rar.1 Night_of_the_Living_Dead_1968.part01.rar Night_of_the_Living_Dead_1968.part24.rar ... ~/Films $ls "Night of the Living Dead (1968)/*.rar" ls: cannot access Night of the Living Dead (1968)/*.rar: No such file or directory ~/Films $ls "$(pwd)/Night of the Living Dead (1968)/*.rar" ls: cannot access /home/g/Films/Night of the Living Dead (1968)/*.rar: No such file or directory ~/Films $ls "Night of the Living Dead (1968)/*rar" ls: cannot access Night of the Living Dead (1968)/*rar: No such file or directory
