Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Using Zsh on a embedded system to configure GPIOs
- X-seq: zsh-users 19468
- From: Mikael Magnusson <mikachu@xxxxxxxxx>
- To: Bart Schaefer <schaefer@xxxxxxxxxxxxxxxx>
- Subject: Re: Using Zsh on a embedded system to configure GPIOs
- Date: Sat, 29 Nov 2014 21:03:07 +0100
- Cc: Zsh Users <zsh-users@xxxxxxx>
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=rbIl1Wdxtgp5QGnhlG0VsjFplse7TSDzG9XIWAIyyEI=; b=xQ+ag7zFrzSKKOYOheKOmB96bO7kkqiYv3cNRqSMymX7sIhIZ8NV8PbMG5vaA/BNSO FJ3sBOf2y2/11ye8borzaWuhaHCEv0vndrWZM/e/Lmii1YLBe2upBqewl2g1kd/hEljj 0X/jE6LYNPen+xBpTdEj5iU9WQuC8itN4aJ4ryYhP+KW9Ece66soaBqiKCOuoLAucMnP Tnf5ll6Sy+lCyEEoQn3jnszTgqbYFHZSKLZAIpkjfbRRHghjbC7s+x8zI8e9Zj6m7yCN X92UBD57uRFOSCAsIAR0dyeg+H3hDZ0+zOznVtJ4L/4fa/pr+Cs1z/pfL+Ex4YvnWfeZ Ub/A==
- In-reply-to: <141129113521.ZM1621@torch.brasslantern.com>
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
- References: <20141129091049.GF4729@solfire> <141129113521.ZM1621@torch.brasslantern.com>
On Sat, Nov 29, 2014 at 8:35 PM, Bart Schaefer
<schaefer@xxxxxxxxxxxxxxxx> wrote:
> On Nov 29, 10:10am, meino.cramer@xxxxxx wrote:
> }
> } To overwrite files I need to use ">!" instead of ">".
> }
> } Is there any way to automate this feature NOT to hit on my fingers,
> } if I want to write to files below /sys, /proc,, /dev...or
> } (better) to recognize, if such a file is a virtual one?
>
> I confess to being confused by the phrase "to hit on my fingers" ...
> but I think I can answer anyway.
>
> The HIST_ALLOW_CLOBBER option replaces ">" with ">|" in the history,
> so that if you forget to use the clobbering form all you need to do
> is recall the previous command with "!!" or the line editor. Does
> that help?
>
> NO_CLOBBER already behaves differently for non-regular files, so that
> you can do things like "print foo > /dev/pts/3" without having to use
> ">|" (though that won't work for /dev/tty for a different reason).
>
> So if there is some way to identify a "virtual file" e.g. with stat(),
> that could potentially also be handled. However, I think virtual files
> masquerade pretty thoroughly as real ones except for the fact that they
> appear to have size 0 yet contents can still be read.
>
> I suppose that, since the point of NO_CLOBBER is to prevent destroying
> existing file contents, redirection could be allowed to succeed for
> existing zero-sized files, which would then work for virtual files.
>
> However, that's not the way it works now, and zsh-workers would need to
> have some discussion of whether that change is acceptable.
Maybe we could add a NO_DESTRUCTIVE_CLOBBER which allows >> to
nonexisting files, > to zero sized files and possible etceteras, but
not > to nonzero files? I personally never find `>> nonexist` aborting
to be useful.
--
Mikael Magnusson
Messages sorted by:
Reverse Date,
Date,
Thread,
Author