Email extractor program needed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Trax
    [----------------------]
    • Aug 2001
    • 14486

    #1

    Email extractor program needed

    Hi,
    i got a small email database in this form:

    email name ip date signupurl niche




    now i need a program that is able get the email adresses from several txt files into one big .txt file


    shouldnt be hard to find one.. however
    i had no real luck...
    if anyone can help me out:
    59 101 924 is my icq!

    i am willing to pay for expenses

    drop me a line if you can help
    you wont regret it

    thanks

    Trax
  • igneus
    Registered User
    • Jul 2003
    • 77

    #2
    cat lists* | awk '{print $1}' > biglist.txt

    or for windows?
    icq: 201430673

    Comment

    • skillfull
      Confirmed User
      • Apr 2003
      • 4716

      #3
      contact me, i will sort them for a copy of the list
      mind at underdark dot cc
      SEO Analyst
      Thunder-Ball.net - Member

      Comment

      • tranza
        ICQ: 197-556-237
        • Jun 2003
        • 57559

        #4
        I'll do it for a copy of the list tranzap at bol dot com dot br

        *edit* ooops, it seems that someone had that idea befora me....
        I'm just a newbie.

        Comment

        • integrated
          Confirmed User
          • Apr 2003
          • 3826

          #5
          doing that would take 2minutes

          i use a program called listmate you can merge lists sort everything you want

          Pioneer of .TV domains
          Grandfather of .TV development
          Respected among industry LEADERS

          Comment

          • american pervert
            Confirmed User
            • Sep 2002
            • 6840

            #6
            atomic email logger works well too
            I can resist everything except temptation

            Comment

            • richard
              Confirmed User
              • Feb 2001
              • 543

              #7
              (put the below in a file called 'a.pl').

              #!/usr/bin/perl
              while (<STDIN>)
              {
              while(/([-\.\w^@]+@(?:[-\w]+\.)+[A-Za-z]{2,4})/g)
              {
              print "$&\n";
              }
              }


              From the shell type:

              cat *.txt | ./a.pl > emails.txt

              :-)

              Comment

              • richard
                Confirmed User
                • Feb 2001
                • 543

                #8
                download a.pl from http://ukwm.com/software/a.txt

                chmod +x a.pl

                Comment

                • tranza
                  ICQ: 197-556-237
                  • Jun 2003
                  • 57559

                  #9
                  Originally posted by richard
                  (put the below in a file called 'a.pl').

                  #!/usr/bin/perl
                  while (<STDIN>)
                  {
                  while(/([-\.\w^@]+@(?:[-\w]+\.)+[A-Za-z]{2,4})/g)
                  {
                  print "$&\n";
                  }
                  }


                  From the shell type:

                  cat *.txt | ./a.pl > emails.txt

                  :-)
                  Looking at your sig I always thought you were from Brazil... I just figured out today that you're using geo tracking....
                  I'm just a newbie.

                  Comment

                  • richard
                    Confirmed User
                    • Feb 2001
                    • 543

                    #10
                    Lots of people make that assumption.

                    Viva Brasil!

                    Comment

                    • tranza
                      ICQ: 197-556-237
                      • Jun 2003
                      • 57559

                      #11
                      Originally posted by richard
                      Lots of people make that assumption.

                      Viva Brasil!
                      Long live the queen!!

                      I just love girls from UK, they are fun!!!
                      I'm just a newbie.

                      Comment

                      • Trax
                        [----------------------]
                        • Aug 2001
                        • 14486

                        #12
                        thanks guys for everyone helping....
                        didnt expect that much responce to that

                        appreciate the help

                        however i now got a nice littel freeware windows tool that works very nice....


                        if someone should have a copy of listmate you can still contact me.....

                        heart its a nice proggie

                        thanks again

                        Trax

                        Comment

                        • goBigtime
                          Confirmed User
                          • Nov 2002
                          • 7761

                          #13
                          Originally posted by igneus
                          cat lists* | awk '{print $1}' > biglist.txt

                          or for windows?


                          Unix

                          or even.. OSX

                          Comment

                          Working...