@kaia
Glob patterns can be handy too:
echo Psy*Test*
echo Psy*BC?
Same works for any command. Like with cd:
cd Psy*BC?
In my example "*" stands for several chars and "?" says here's exactly one char. shell globs have some more features like sequences, sets etc.