Don't worry about bash, but do concern yourself with knowing sh and know the differences between them. (eg, understand what in a bash script is not valid sh, ie "bashisms")
Consider the following:
test x"$SHELL" = x/bin/perl && RESULT=no; echo "${RESULT-yes}"
If you understand the above fully, then you probably already know enough sh to get by. If you do not understand the above, execute the command; if it prints 'yes', then you need to learn more sh. (English interpretation: if you use perl as your login shell, then you might be able to get by without learning sh. Otherwise, you do.)
To answer your question concretely; no, there is probably nothing you can do in bash that you can't do in perl, but if you're using bash for your shell, it's silly to drop in to perl all the time. If bash is your shell, then it is a tool that you are using a lot. Therefore, you should know how to use it well.