Help for this page

Select Code to Download


  1. or download this
    perl -aplF"/\./" -E"$_=join q{.},reverse@F" zones.txt
    
  2. or download this
    perl -lpE"$_=join q{.},reverse split/\./" zones.txt
    
  3. or download this
    perl -lnE"$,=q{.};say reverse split/\./" zones.txt
    
  4. or download this
    perl -pE"s/(.+)\.(.+)\.(.+)/$3.$2.$1/" zones.txt