Help for this page

Select Code to Download


  1. or download this
    perl -ne 'print if /(\d{1,3}\.){3}\d{1,3}/;'
    
  2. or download this
    perl -ne 'print if /(\d{1,3}\.){3}(\d{1,3})/ and $1 < 256 and ... and 
    +$4 < 256;'
    
  3. or download this
    perl -ne 'print if /(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})/ and $1
    + < 256 and ... and $4 < 256;'