Re: bash equivalent of "print -u<n> foo"?
From: Chris F.A. Johnson (c.f.a.johnson_at_rogers.com)
Date: 09/16/03
- Next message: laura fairhead: "Re: Fixing Console Text."
- Previous message: Andreas Kahari: "Re: bash equivalent of "print -u<n> foo"?"
- In reply to: Michael Wang: "bash equivalent of "print -u<n> foo"?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: 16 Sep 2003 17:44:27 GMT
On Tue, 16 Sep 2003 at 17:37 GMT, Michael Wang wrote:
> What is the bash equivalent of "print -u<n> foo" in ksh?
echo foo >&<n>
printf "%s\n" foo >&<n>
> And how do you think of bash?
Great for interactive use.
Great for scripting (especially interactive).
Slower than other shells, but generally more than fast enough.
--
Chris F.A. Johnson http://cfaj.freeshell.org
===================================================================
My code (if any) in this post is copyright 2003, Chris F.A. Johnson
and may be copied under the terms of the GNU General Public License
- Next message: laura fairhead: "Re: Fixing Console Text."
- Previous message: Andreas Kahari: "Re: bash equivalent of "print -u<n> foo"?"
- In reply to: Michael Wang: "bash equivalent of "print -u<n> foo"?"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|