It means to pipe "show running-config" through the 'include' command, which is effectively a grep. This is the Cisco equivalent of "cat file.cfg | grep blah"
Nice, that makes sense. I keep forgetting you can abbreiviate IOS commands ('sh' instead of 'show'). Here I was thinking IOS had some form of bourne shell

How about trying "sh run | i ull" which should pull all your configuration lines which reference null in any fashion. Yes, I'm just searching for 'ull', just in case it's also going to case-match.
It appears it's no where in running config...
Natures#sh run | i ull
Violators will be prosecuted to the fullest extent of both civil
Natures#
But....
Natures#show ipv6 route
IPv6 Routing Table - default - 8 entries
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route
B - BGP, HA - Home Agent, MR - Mobile Router, R - RIP
D - EIGRP, EX - EIGRP external, ND - Neighbor Discovery
O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2
S ::/0 [1/0]
via Dialer1, directly connected
C 2001:44B8:4030:97::/64 [0/0]
via Dialer1, directly connected
L 2001:44B8:4030:97:CEEF:48FF:FEAF:ECB8/128 [0/0]
via Dialer1, receive
S 2001:44B8:4126:C600::/56 [1/0]
via Null0, directly connected
via 2001:44B8:4126:C600::F0
C 2001:44B8:4126:C600::/64 [0/0]
via Vlan1, directly connected
L 2001:44B8:4126:C600::1/128 [0/0]
via Vlan1, receive
LC 2001:44B8:4126:C6FF::1/128 [0/0]
via Dialer1, receive
L FF00::/8 [0/0]
via Null0, receive
Natures#
It appears to be working (ie, I've managed to get addresses from Router -> Firewall -> Desktop and I can ping in and out from my desktop.... So I guess I'm just more confused than broken.