Get all List of a Site in SharePoint 2010

Some time we need to get all the list of specific type developed and used in a SharePoint 2010 site.We can get all the lists used in SharePoint by below script.
  1. Get-SPWeb http://win-ohmrv9tijth:1000/ |  
  2.    Select -ExpandProperty Lists |  
  3.    Where { $_.GetType().Name -eq "SPList" } |  
  4.    Select Title