yum search PackageNameHowever this only told me that it was available in the yum repositories, not if it was installed. Instead I wanted:
rpm -qa|grep PackageNameThe "rpm -qa" command queries the local package manager database and outputs every package you have installed (including yum installs). I then pipe it to grep along with a search term.
The end result tells me what packages and versions are installed on that system, and if I need to run the following command or not:
yum install PackageName