Help for this page

Select Code to Download


  1. or download this
    REM Windows CMD prompt
    perl -F: -e "$F[0] =~ s/-/_/g; print join(':',@F);"
    
  2. or download this
    # Linux/Unix/Cygwin shell
    perl -F: -e '$F[0] =~ s/-/_/g; print join(":",@F);'