Re: OT: help with search

2015-11-02 Thread bruce
Rick!!!

Really, you're throwing this person to java!!!  You're a cruel dude!!!

But yeah, a web crawler is what you need. As stated, do a goog search,
there are plenty out there. You just need an easy to use crawler that
you can point a site at, and the crawler will then iterate through all
the pages on/in the domain, retrieving all the links for you.



On Mon, Nov 2, 2015 at 1:31 PM, Rick Stevens  wrote:
> On 11/02/2015 10:22 AM, jd1008 wrote:
>>
>>
>>
>> On 11/02/2015 11:15 AM, bruce wrote:
>>>
>>> ok...
>>>
>>>
>>> so you have a 'local' site, not a page, and you want to extract/get
>>> all the links for the 'domain' of the site you're looking at.
>>>
>>> you're going to have to have an app/process that crawls the site, and
>>> generates the links.
>>>
>>> there are a bunch of open source stuff to allow you to craft a process
>>> to do this, depending on your skillset.  (not sure what your dev
>>> level/skillset is)
>>>
>>> you might also have 'plugins' for the browser that will more or less
>>> generate this kind of data.
>>>
>>> webscraping/crawling/links  <<< terms if you need them.
>>>
>>> let us know what else you need.
>>>
>>>
>>> On Mon, Nov 2, 2015 at 12:53 PM, jd1008  wrote:


 On 11/01/2015 08:01 PM, bruce wrote:
>
> hey...
>
> is your issue, you have a specific site you can point to, and you want
> to get links off the site?
>
> or is it something else?
>
>
>
> On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:
>>
>> I googled for a way to list all items found on a single page.
>> What I am searching for is very very specific (in double quotes)
>> and only on a specific web site:
>> FOr example:
>>
>> my_Favorite_Site.com: "my specific phrase" -some_word
>>
>>
>> It comes up with a total of 12K hits on that web site.
>>
>> I need a way list the URL's of all the hits, or find a
>> way to easily capture the URL's of all hits without the
>> rigmarole of Rightclick on each link and copy url.
>>
>> Has anyone found a way to accomplish this?
>> --
>> users mailing list
>> users@lists.fedoraproject.org
>> To unsubscribe or change subscription options:
>> https://admin.fedoraproject.org/mailman/listinfo/users
>> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
>> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>> Have a question? Ask away: http://ask.fedoraproject.org

 Just the links, so I can put them in a text file for another program to
 go through them.
 --

>> No.
>> Not  a local page. It can be any public search engine,
>> and it can be any specific phrase.
>> I already provided an example.
>> But the example does not give me just the raw texts of the links of the
>> hits found,
>> nor does it give all of them in one fell swoop which you could save to a
>> text file.
>
>
> Try this:
>
> https://www.cs.cmu.edu/~rcm/websphinx/
>
> Perhaps that'll do what you want.
> --
> - Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
> - AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
> --
> - The world is coming to an end ... SAVE YOUR FILES!!!   -
> --
>
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread jd1008



On 11/02/2015 11:15 AM, bruce wrote:

ok...


so you have a 'local' site, not a page, and you want to extract/get
all the links for the 'domain' of the site you're looking at.

you're going to have to have an app/process that crawls the site, and
generates the links.

there are a bunch of open source stuff to allow you to craft a process
to do this, depending on your skillset.  (not sure what your dev
level/skillset is)

you might also have 'plugins' for the browser that will more or less
generate this kind of data.

webscraping/crawling/links  <<< terms if you need them.

let us know what else you need.


On Mon, Nov 2, 2015 at 12:53 PM, jd1008  wrote:


On 11/01/2015 08:01 PM, bruce wrote:

hey...

is your issue, you have a specific site you can point to, and you want
to get links off the site?

or is it something else?



On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:

I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Just the links, so I can put them in a text file for another program to
go through them.
--


No.
Not  a local page. It can be any public search engine,
and it can be any specific phrase.
I already provided an example.
But the example does not give me just the raw texts of the links of the 
hits found,
nor does it give all of them in one fell swoop which you could save to a 
text file.



--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread Rick Stevens

On 11/02/2015 10:48 AM, bruce wrote:

Rick!!!

Really, you're throwing this person to java!!!  You're a cruel dude!!!


Muah-hah-hah! (twirling moustache and cackling evilly!)


But yeah, a web crawler is what you need. As stated, do a goog search,
there are plenty out there. You just need an easy to use crawler that
you can point a site at, and the crawler will then iterate through all
the pages on/in the domain, retrieving all the links for you.


I sorta chose that one as it has a fairly simple "download and use"
thing going for it.


On Mon, Nov 2, 2015 at 1:31 PM, Rick Stevens  wrote:

On 11/02/2015 10:22 AM, jd1008 wrote:




On 11/02/2015 11:15 AM, bruce wrote:


ok...


so you have a 'local' site, not a page, and you want to extract/get
all the links for the 'domain' of the site you're looking at.

you're going to have to have an app/process that crawls the site, and
generates the links.

there are a bunch of open source stuff to allow you to craft a process
to do this, depending on your skillset.  (not sure what your dev
level/skillset is)

you might also have 'plugins' for the browser that will more or less
generate this kind of data.

webscraping/crawling/links  <<< terms if you need them.

let us know what else you need.


On Mon, Nov 2, 2015 at 12:53 PM, jd1008  wrote:



On 11/01/2015 08:01 PM, bruce wrote:


hey...

is your issue, you have a specific site you can point to, and you want
to get links off the site?

or is it something else?



On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:


I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Just the links, so I can put them in a text file for another program to
go through them.
--


No.
Not  a local page. It can be any public search engine,
and it can be any specific phrase.
I already provided an example.
But the example does not give me just the raw texts of the links of the
hits found,
nor does it give all of them in one fell swoop which you could save to a
text file.



Try this:

 https://www.cs.cmu.edu/~rcm/websphinx/

Perhaps that'll do what you want.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
--
- The world is coming to an end ... SAVE YOUR FILES!!!   -
--

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org



--
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
--
-   "Do you suffer from long-term memory loss?"  "I don't remember"  -
--- Chumbawumba, "Amnesia" (TubThumping) -
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread jd1008



On 11/01/2015 08:01 PM, bruce wrote:

hey...

is your issue, you have a specific site you can point to, and you want
to get links off the site?

or is it something else?



On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:

I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Just the links, so I can put them in a text file for another program to
go through them.
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread bruce
ok...


so you have a 'local' site, not a page, and you want to extract/get
all the links for the 'domain' of the site you're looking at.

you're going to have to have an app/process that crawls the site, and
generates the links.

there are a bunch of open source stuff to allow you to craft a process
to do this, depending on your skillset.  (not sure what your dev
level/skillset is)

you might also have 'plugins' for the browser that will more or less
generate this kind of data.

webscraping/crawling/links  <<< terms if you need them.

let us know what else you need.


On Mon, Nov 2, 2015 at 12:53 PM, jd1008  wrote:
>
>
> On 11/01/2015 08:01 PM, bruce wrote:
>>
>> hey...
>>
>> is your issue, you have a specific site you can point to, and you want
>> to get links off the site?
>>
>> or is it something else?
>>
>>
>>
>> On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:
>>>
>>> I googled for a way to list all items found on a single page.
>>> What I am searching for is very very specific (in double quotes)
>>> and only on a specific web site:
>>> FOr example:
>>>
>>> my_Favorite_Site.com: "my specific phrase" -some_word
>>>
>>>
>>> It comes up with a total of 12K hits on that web site.
>>>
>>> I need a way list the URL's of all the hits, or find a
>>> way to easily capture the URL's of all hits without the
>>> rigmarole of Rightclick on each link and copy url.
>>>
>>> Has anyone found a way to accomplish this?
>>> --
>>> users mailing list
>>> users@lists.fedoraproject.org
>>> To unsubscribe or change subscription options:
>>> https://admin.fedoraproject.org/mailman/listinfo/users
>>> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
>>> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>>> Have a question? Ask away: http://ask.fedoraproject.org
>
> Just the links, so I can put them in a text file for another program to
> go through them.
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread Rick Stevens

On 11/02/2015 10:22 AM, jd1008 wrote:



On 11/02/2015 11:15 AM, bruce wrote:

ok...


so you have a 'local' site, not a page, and you want to extract/get
all the links for the 'domain' of the site you're looking at.

you're going to have to have an app/process that crawls the site, and
generates the links.

there are a bunch of open source stuff to allow you to craft a process
to do this, depending on your skillset.  (not sure what your dev
level/skillset is)

you might also have 'plugins' for the browser that will more or less
generate this kind of data.

webscraping/crawling/links  <<< terms if you need them.

let us know what else you need.


On Mon, Nov 2, 2015 at 12:53 PM, jd1008  wrote:


On 11/01/2015 08:01 PM, bruce wrote:

hey...

is your issue, you have a specific site you can point to, and you want
to get links off the site?

or is it something else?



On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:

I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org

Just the links, so I can put them in a text file for another program to
go through them.
--


No.
Not  a local page. It can be any public search engine,
and it can be any specific phrase.
I already provided an example.
But the example does not give me just the raw texts of the links of the
hits found,
nor does it give all of them in one fell swoop which you could save to a
text file.


Try this:

https://www.cs.cmu.edu/~rcm/websphinx/

Perhaps that'll do what you want.
--
- Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
- AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
--
- The world is coming to an end ... SAVE YOUR FILES!!!   -
--
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread bruce
snidely.. and your TOPHAT!!

thanks for the laugh bro!


On Mon, Nov 2, 2015 at 1:55 PM, Rick Stevens  wrote:
> On 11/02/2015 10:48 AM, bruce wrote:
>>
>> Rick!!!
>>
>> Really, you're throwing this person to java!!!  You're a cruel dude!!!
>
>
> Muah-hah-hah! (twirling moustache and cackling evilly!)
>
>> But yeah, a web crawler is what you need. As stated, do a goog search,
>> there are plenty out there. You just need an easy to use crawler that
>> you can point a site at, and the crawler will then iterate through all
>> the pages on/in the domain, retrieving all the links for you.
>
>
> I sorta chose that one as it has a fairly simple "download and use"
> thing going for it.
>
>
>> On Mon, Nov 2, 2015 at 1:31 PM, Rick Stevens  wrote:
>>>
>>> On 11/02/2015 10:22 AM, jd1008 wrote:




 On 11/02/2015 11:15 AM, bruce wrote:
>
>
> ok...
>
>
> so you have a 'local' site, not a page, and you want to extract/get
> all the links for the 'domain' of the site you're looking at.
>
> you're going to have to have an app/process that crawls the site, and
> generates the links.
>
> there are a bunch of open source stuff to allow you to craft a process
> to do this, depending on your skillset.  (not sure what your dev
> level/skillset is)
>
> you might also have 'plugins' for the browser that will more or less
> generate this kind of data.
>
> webscraping/crawling/links  <<< terms if you need them.
>
> let us know what else you need.
>
>
> On Mon, Nov 2, 2015 at 12:53 PM, jd1008  wrote:
>>
>>
>>
>> On 11/01/2015 08:01 PM, bruce wrote:
>>>
>>>
>>> hey...
>>>
>>> is your issue, you have a specific site you can point to, and you
>>> want
>>> to get links off the site?
>>>
>>> or is it something else?
>>>
>>>
>>>
>>> On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:


 I googled for a way to list all items found on a single page.
 What I am searching for is very very specific (in double quotes)
 and only on a specific web site:
 FOr example:

 my_Favorite_Site.com: "my specific phrase" -some_word


 It comes up with a total of 12K hits on that web site.

 I need a way list the URL's of all the hits, or find a
 way to easily capture the URL's of all hits without the
 rigmarole of Rightclick on each link and copy url.

 Has anyone found a way to accomplish this?
 --
 users mailing list
 users@lists.fedoraproject.org
 To unsubscribe or change subscription options:
 https://admin.fedoraproject.org/mailman/listinfo/users
 Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
 Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
 Have a question? Ask away: http://ask.fedoraproject.org
>>
>>
>> Just the links, so I can put them in a text file for another program
>> to
>> go through them.
>> --
>>
 No.
 Not  a local page. It can be any public search engine,
 and it can be any specific phrase.
 I already provided an example.
 But the example does not give me just the raw texts of the links of the
 hits found,
 nor does it give all of them in one fell swoop which you could save to a
 text file.
>>>
>>>
>>>
>>> Try this:
>>>
>>>  https://www.cs.cmu.edu/~rcm/websphinx/
>>>
>>> Perhaps that'll do what you want.
>>> --
>>> - Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
>>> - AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
>>> --
>>> - The world is coming to an end ... SAVE YOUR FILES!!!   -
>>> --
>>>
>>> --
>>> users mailing list
>>> users@lists.fedoraproject.org
>>> To unsubscribe or change subscription options:
>>> https://admin.fedoraproject.org/mailman/listinfo/users
>>> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
>>> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
>>> Have a question? Ask away: http://ask.fedoraproject.org
>
>
>
> --
> --
> - Rick Stevens, Systems Engineer, AllDigitalri...@alldigital.com -
> - AIM/Skype: therps2ICQ: 226437340   Yahoo: origrps2 -
> --
> -   "Do you suffer from long-term memory loss?"  "I don't remember"  -
> --- Chumbawumba, "Amnesia" (TubThumping) -
>
> 

Re: OT: help with search

2015-11-02 Thread Jon LaBadie
On Mon, Nov 02, 2015 at 11:22:38AM -0700, jd1008 wrote:
> 
...
> 
> No.
> Not  a local page. It can be any public search engine,
> and it can be any specific phrase.
> I already provided an example.
> But the example does not give me just the raw texts of
> the links of the hits found, nor does it give all of them
> in one fell swoop which you could save to a text file.
> 
Check out this forum query:

  https://productforums.google.com/forum/#!topic/websearch/wBL65wPIxxY

If I understand the discussion, and it is correct, Google
will only show a maximum of the first 1000.  One responder
also shows a way to get those 1000 into a document 100 at
a time.

HTH
jl
-- 
Jon H. LaBadie  jo...@jgcomp.com
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-02 Thread jd1008



On 11/02/2015 03:29 PM, Jon LaBadie wrote:

On Mon, Nov 02, 2015 at 11:22:38AM -0700, jd1008 wrote:
...

No.
Not  a local page. It can be any public search engine,
and it can be any specific phrase.
I already provided an example.
But the example does not give me just the raw texts of
the links of the hits found, nor does it give all of them
in one fell swoop which you could save to a text file.


Check out this forum query:

   https://productforums.google.com/forum/#!topic/websearch/wBL65wPIxxY

If I understand the discussion, and it is correct, Google
will only show a maximum of the first 1000.  One responder
also shows a way to get those 1000 into a document 100 at
a time.

HTH
jl

The firefox add-on "Re-pagination" WILL present all hits (in my case 2880)
on a single page, but they are not in the form of raw URL text per hit.
The link you provide does indeed ask for almost the same thing I am seeking,
but the OP of that blog did not get what s/he wanted.


--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


OT: help with search

2015-11-01 Thread jd1008

I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-01 Thread Joe Zeff

On 11/01/2015 04:30 PM, jd1008 wrote:

my_Favorite_Site.com: "my specific phrase" -some_word


I think what you want it this:

"my specific phrase" site:my_Favorite_Site.com
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


[SOLVED - kind of] OT: help with search

2015-11-01 Thread jd1008



On 11/01/2015 05:30 PM, jd1008 wrote:

I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?
Found a plugin (re-pagination) that lists all hits on the same page by 
creating a local page made of concatenation of all pages of the search 
result.
But it still does not provide for a way to grab just the URL's of all 
hits and provide for a way to save them.

Will think of a script to do this.

--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-01 Thread bruce
hey...

is your issue, you have a specific site you can point to, and you want
to get links off the site?

or is it something else?



On Sun, Nov 1, 2015 at 7:30 PM, jd1008  wrote:
> I googled for a way to list all items found on a single page.
> What I am searching for is very very specific (in double quotes)
> and only on a specific web site:
> FOr example:
>
> my_Favorite_Site.com: "my specific phrase" -some_word
>
>
> It comes up with a total of 12K hits on that web site.
>
> I need a way list the URL's of all the hits, or find a
> way to easily capture the URL's of all hits without the
> rigmarole of Rightclick on each link and copy url.
>
> Has anyone found a way to accomplish this?
> --
> users mailing list
> users@lists.fedoraproject.org
> To unsubscribe or change subscription options:
> https://admin.fedoraproject.org/mailman/listinfo/users
> Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
> Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
> Have a question? Ask away: http://ask.fedoraproject.org
-- 
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org


Re: OT: help with search

2015-11-01 Thread M. Fioretti

On 2015-11-02 01:30, jd1008 wrote:

I googled for a way to list all items found on a single page.
What I am searching for is very very specific (in double quotes)
and only on a specific web site:
FOr example:

my_Favorite_Site.com: "my specific phrase" -some_word


It comes up with a total of 12K hits on that web site.

I need a way list the URL's of all the hits, or find a
way to easily capture the URL's of all hits without the
rigmarole of Rightclick on each link and copy url.

Has anyone found a way to accomplish this?


If I understand you collectly, you may need to do your searches
with surfraw:

http://www.techrepublic.com/blog/linux-and-open-source/surfing-the-world-wide-web-raw-style/

and then maybe clean/postprocess the results with some other
shell script.

HTH,
Marco
--
http://mfioretti.com
--
users mailing list
users@lists.fedoraproject.org
To unsubscribe or change subscription options:
https://admin.fedoraproject.org/mailman/listinfo/users
Fedora Code of Conduct: http://fedoraproject.org/code-of-conduct
Guidelines: http://fedoraproject.org/wiki/Mailing_list_guidelines
Have a question? Ask away: http://ask.fedoraproject.org