nVidia 331.13 - BETA Linux 64 bit released Oct 4 adds GPU usage

Anonymous

Gary, Richard and

Gary, Richard and AgentB:

Thanks for the input/guidance. Most helpful.

Quote:

grep p2030 job_log_einstein* | cut -d\ -f11 | tail -25


AgentB:
small correction to the above (unless your file structure uses a "\" as a delimeter:
grep p2030 job_log_einstein* | cut -d ' ' -f11 | tail -25

AgentB
AgentB
Joined: 17 Mar 12
Posts: 915
Credit: 513211304
RAC: 0

RE: RE: grep p2030

Quote:

Quote:

grep p2030 job_log_einstein* | cut -d\ -f11 | tail -25

AgentB:
small correction to the above (unless your file structure uses a "\" as a delimeter:
and in the window i composed it i see


Ah yes i see my second space got eaten!

Oddly it disappears after posting - if you quote it - you will see in the compose window

cut-d-f11

which is another way to escape the space character as the delimiter for cut.

The message board seems to do some weird things with multiple spaces, no matter how many spaces i type it shows only one.

So i would like to type it correctly with two spaces, you will have to remove the underscore below.

grep p2030 job_log_einstein* | cut -d\ _ -f11 | tail -25

Richard Haselgrove
Richard Haselgrove
Joined: 10 Dec 05
Posts: 2142
Credit: 2830809228
RAC: 1034605

Use {pre} tags to preserve

Use {pre} tags to preserve white space:

[pre]grep p2030 job_log_einstein* | cut -d\ -f11 | tail -25
^^[/pre]
But a double space is a tricky thing to post for another user to copy without warning - anybody who re-keys rather than copying (say if they're viewing on one screen, while working on a different computer) might miss it, even like this.

Comment viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.