Often when running “show run” command the output is very long and I am usually looking for a specific bit of the config that I want to check/modify – useful commands to to filter the output:
to start displaying the config at a specific line containing <string> :
show run | begin <string>
to display all the lines containing the given <string>
show run | include <string>