Omega Owners Forum

Please login or register.

Login with username, password and session length
Advanced search  

News:

Welcome to OOF

Pages: [1] 2 3 4  All   Go Down

Author Topic: When computing goes backwards  (Read 4760 times)

0 Members and 1 Guest are viewing this topic.

Nickbat

  • Guest
When computing goes backwards
« on: 16 October 2012, 22:52:26 »

In good old WinXP – and all prior Win versions – one could easily search for text within files. This function lies, I would have thought, at the basis of computing: the ability to find something fast within trillions of lines of code. Tonight, as part of my day job, I tried to find a phrase which I knew had been translated into Spanish at some time in the past. Could I find it? No. In Win 7, the default setting is searching for file names in folders. Well, if I knew the file, I'd be able to find what I was looking for.

To look through folders, you have to "index" them. What's that about? I don't know which folder it was in!  ::) ::)

All I want to do is be able to search a disk for a text string. Is that so hard? For Win 7 Ultimate, it clearly is.

Grrr.  >:( >:( >:(   
Logged

feeutfo

  • Guest
Re: When computing goes backwards
« Reply #1 on: 16 October 2012, 22:55:22 »

Bring back Bill Gates. ;) mmmm Billy boy.
Logged

aaronjb

  • Guest
Re: When computing goes backwards
« Reply #2 on: 16 October 2012, 23:04:44 »

# find / -exec grep -H -n 'Nobody expects the Spanish inquisition' {} \;


Oh.. wait, Windows. There's always Cygwin, I suppose.
Logged

Sir Tigger KC

  • Get A Life!!
  • *****
  • Offline Offline
  • Gender: Male
  • West Dorset
  • Posts: 24554
    • Ford Mondeo 2.2TDCi TitX
    • View Profile
Re: When computing goes backwards
« Reply #3 on: 16 October 2012, 23:36:47 »

Never mind Nick, put the kettle on and have a nice cuppa tea!  :)
Logged
RIP Paul 'Luvvie' Lovejoy

Politically homeless ......

Varche

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • middle of Andalucia
  • Posts: 13940
  • What is going to break next?
    • Golf Estate
    • View Profile
Re: When computing goes backwards
« Reply #4 on: 17 October 2012, 09:56:18 »

In good old WinXP – and all prior Win versions – one could easily search for text within files. This function lies, I would have thought, at the basis of computing: the ability to find something fast within trillions of lines of code. Tonight, as part of my day job, I tried to find a phrase which I knew had been translated into Spanish at some time in the past. Could I find it? No. In Win 7, the default setting is searching for file names in folders. Well, if I knew the file, I'd be able to find what I was looking for.

To look through folders, you have to "index" them. What's that about? I don't know which folder it was in!  ::) ::)

All I want to do is be able to search a disk for a text string. Is that so hard? For Win 7 Ultimate, it clearly is.

Grrr.  >:( >:( >:(   

It is there, just remove your "EU" filter and you will find it!! ;D

sent from my huckleberry APod nanny with chucklebags running on Win95
Logged
The biggest joke on mankind is that computers have started asking humans to prove that they aren’t a robot.

Kevin Wood

  • Global Moderator
  • *****
  • Offline Offline
  • Gender: Male
  • Alton, Hampshire
  • Posts: 36387
    • Jaguar XE 25t, Westfield
    • View Profile
Re: When computing goes backwards
« Reply #6 on: 17 October 2012, 10:04:09 »

Logged
Tech2 services currently available. See TheBoy's price list: http://theboy.omegaowners.com/

cleggy

  • Guest
Re: When computing goes backwards
« Reply #7 on: 17 October 2012, 10:24:51 »

I could write assembler code, tune, tear apart, fix and rebuild IBM MVS/JES3 operating systems on trio of 370 machines, as a Systems Engineer mind you it was 1978. Now I ain't got a clue, and I guess Microsoft won't let me have logic manuals and source code. ;D ;D ;D
You all have it too easy. ::) :D ;D 
« Last Edit: 17 October 2012, 10:31:26 by Cleggy »
Logged

kully

  • Newbie
  • *
  • Offline Offline
  • Gender: Male
  • England
  • Posts: 46
    • 2.2 DTI CDX Saloon
    • View Profile
Re: When computing goes backwards
« Reply #8 on: 17 October 2012, 10:35:32 »

If I want to find mention of the word 'omega' in all .txt files I would

> find "omega" *.txt

or if case does not matter

> find /i "omega" *.txt

add '| more' if you want to view one page of results at a time

or leave off the '*.txt' if you want to search all files.

Logged

kully

  • Newbie
  • *
  • Offline Offline
  • Gender: Male
  • England
  • Posts: 46
    • 2.2 DTI CDX Saloon
    • View Profile
Re: When computing goes backwards
« Reply #9 on: 17 October 2012, 10:36:55 »

I'd recommend getting the free (and excellent) Notepad++, not only is a great editor it also has find-in-files support built-in.
Logged

zirk

  • Omega Queen
  • *****
  • Offline Offline
  • Gender: Male
  • Epping Forest
  • Posts: 11436
  • 3.2 Manual Special Saloon ReMapped and LPG'd and
    • 3.2 Manual Special Estate
    • View Profile
Re: When computing goes backwards
« Reply #10 on: 17 October 2012, 12:13:01 »

In good old WinXP – and all prior Win versions – one could easily search for text within files. This function lies, I would have thought, at the basis of computing: the ability to find something fast within trillions of lines of code. Tonight, as part of my day job, I tried to find a phrase which I knew had been translated into Spanish at some time in the past. Could I find it? No. In Win 7, the default setting is searching for file names in folders. Well, if I knew the file, I'd be able to find what I was looking for.

To look through folders, you have to "index" them. What's that about? I don't know which folder it was in!  ::) ::)

All I want to do is be able to search a disk for a text string. Is that so hard? For Win 7 Ultimate, it clearly is.

Grrr.  >:( >:( >:(   

Try this Nick, Win 7,

Search Box, 'My Text Word', wait, click- See More Results, brings up New Window, top right box = My Text Word, click on this, brings up filters, date size kind etc, click Kind, then click type, ie email, document / Note / picture etc.

Hope it helps.
Logged

cem_devecioglu

  • Guest
Re: When computing goes backwards
« Reply #11 on: 17 October 2012, 13:52:40 »

I could write assembler code, tune, tear apart, fix and rebuild IBM MVS/JES3 operating systems on trio of 370 machines, as a Systems Engineer mind you it was 1978. Now I ain't got a clue, and I guess Microsoft won't let me have logic manuals and source code. ;D ;D ;D
You all have it too easy. ::) :D ;D

nowadays even mobiles have more complex coding techniques.. those days are long gone..
 
besides there is no need for those huge machines , even an old model pc is capable of handling manyX times of calculating power.. when I was working for a bank, I was able to beat the manframe on a 2 processor simple raid system during 3d cube calculations.. (later microsoft called them OLAP)
 
ps: the mainframe programmer was unaware of 3d matrices..  ;D
 
 
« Last Edit: 17 October 2012, 13:54:18 by cem »
Logged

cleggy

  • Guest
Re: When computing goes backwards
« Reply #12 on: 17 October 2012, 15:26:23 »

I could write assembler code, tune, tear apart, fix and rebuild IBM MVS/JES3 operating systems on trio of 370 machines, as a Systems Engineer mind you it was 1978. Now I ain't got a clue, and I guess Microsoft won't let me have logic manuals and source code. ;D ;D ;D
You all have it too easy. ::) :D ;D

nowadays even mobiles have more complex coding techniques.. those days are long gone..
besides there is no need for those huge machines , even an old model pc is capable of handling manyX times of calculating power.. when I was working for a bank, I was able to beat the manframe on a 2 processor simple raid system during 3d cube calculations.. (later microsoft called them OLAP)
 
ps: the mainframe programmer was unaware of 3d matrices..  ;D

I know, I feel old trying to remember, a 370/158 was the first 1mip CPU in 1973 and was huge  ;) ;D ;D
All we had were dumb terminals accessing the mainrame. When PC's first came out we called them 'Toys & Novelties' ;D ;D
« Last Edit: 17 October 2012, 15:36:35 by Cleggy »
Logged

Nickbat

  • Guest
Re: When computing goes backwards
« Reply #13 on: 17 October 2012, 16:09:45 »

Thanks for the tips, Guys. :y

Unfortunately, I tried one suggestion which was to get Win7 to index contents as well as file types. BIG mistake. The PC slowed down to an absolute crawl and I've wasted several hours of work time trying to correct it. Have switched it off for now while I finish my jobs. What an absolute pain.  >:( >:(

Incidentally, if you read the comments under the link that Cem provided, you'll see that this change to the search facility has made people seriously pi**ed off.  >:(
Logged

TheBoy

  • Administrator
  • *****
  • Offline Offline
  • Gender: Male
  • Brackley, Northants
  • Posts: 106843
  • I Like Lockdown
    • Whatever Starts
    • View Profile
Re: When computing goes backwards
« Reply #14 on: 17 October 2012, 18:36:30 »

No trouble in searching within files here on Vista/W7. I do it all the time. And I do NOT index files.

Please read the manual ;)
Logged
Grumpy old man
Pages: [1] 2 3 4  All   Go Up
 

Page created in 0.013 seconds with 17 queries.