Help for this page

Select Code to Download


  1. or download this
    shell prompt$ sed -e 's/<br>/\
                > /g' < file.txt > file.out
    
  2. or download this
    s/<br>/\
    /g
    
  3. or download this
    while (<REQUESTS>) {
         s/<br>/\n/g;
         s/\&#39;/'/g;
         print MAIL;
    }