Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Directory not recognized as directory
- X-seq: zsh-workers 21977
- From: DervishD <zsh@xxxxxxxxxxxx>
- To: Andrey Borzenkov <arvidjaar@xxxxxxxxxx>
- Subject: Re: Directory not recognized as directory
- Date: Wed, 2 Nov 2005 19:56:11 +0100
- Cc: zsh-workers@xxxxxxxxxx
- In-reply-to: <200511022142.40682.arvidjaar@xxxxxxxxxx>
- Mail-followup-to: Andrey Borzenkov <arvidjaar@xxxxxxxxxx>, zsh-workers@xxxxxxxxxx
- Mailing-list: contact zsh-workers-help@xxxxxxxxxx; run by ezmlm
- Organization: DervishD
- References: <20051102140207.GA16931@DervishD> <200511022142.40682.arvidjaar@xxxxxxxxxx>
Hi Andrey :)
* Andrey Borzenkov <arvidjaar@xxxxxxxxxx> dixit:
> > Using version 4.2.5:
> >
> > $ mkdir -- $'\x90'
> > $ stat *
> > stat: \M-^P: no such file or directory
> >
>
> I can't reproduce it:
>
> {pts/2}% mkdir -- $'\x90'
> {pts/2}% stat *
> File: `\220'
> Size: 40 Blocks: 0 IO Block: 4096 ??????????????
> ...
> {pts/2}% echo $ZSH_VERSION
> 4.2.5
Looks like you're using "stat" from coreutils, and not builtin
stat. Sorry, my fault, in my example I didn't do "builtin stat"
instead of stat:
$ mkdir -- $'\x90'
$ builtin stat *
stat: \x90: no such file or directory
The output of stat is the character corresponding to 0x90, but
since it is non printable I'm doing the same as in my last message
and using the corresponding "print/bindkey" escape sequence.
Raúl Núñez de Arenas Coronado
--
Linux Registered User 88736 | http://www.dervishd.net
http://www.pleyades.net & http://www.gotesdelluna.net
It's my PC and I'll cry if I want to...
Messages sorted by:
Reverse Date,
Date,
Thread,
Author