On Thu, 17 Feb 2005 13:49:22 +1300, Wesley Parish wrote:
> type <filename> | more  /* DOSish, I know, but it works */
> 
> more <filename>
> 
> more < <filename>  /* redirection < */
> 
> less <filename>
> 
> I've never had luck with
> type <filename> | less
> so it's not worth trying, AFAIK.

the command "type" mean two totally different things in DOS and Unix.
In DOS, "type" displays the file's contents.
In Unix "type" tells you what kind of command something is.
To display a file's contents use "cat" instead.

DOS's "type <filename> | more" is the same as Unix's "cat <filename> | less"

Yuri
-- 
** WARNING to mailing list repliers **
Gmail over-rides "Reply-To:" field. Check your "To:" address before
sending reply to this post.

Reply via email to