I'm learning the look
utility and I don't understand the meaning of the -t
option.
Can someone show me some examples of it?
I read the man
page, but still don't know what it exactly means.
I'm learning the Can someone show me some examples of it? I read the |
||||
migrated from stackoverflow.com Oct 7 '11 at 17:15This question came from our site for professional and enthusiast programmers. |
||||
I don't know why that option would be useful. However here's an example:
I suppose it's to give you a mechanism to look up "similar" words if you don't have complete control over the lookup-string. |
|||
|
-t
is to ignore the case when matching. – Tinctorius Oct 7 '11 at 13:39-f
is ignore case;-t
specifies a termination character – Paul R Oct 7 '11 at 13:56