[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: How to read \000?
From: |
Peng Yu |
Subject: |
Re: How to read \000? |
Date: |
Wed, 15 May 2024 14:47:59 -0500 |
No. I need to just read one character.
On Wed, May 15, 2024 at 2:30 PM alex xmb sw ratchev <fxmbsw7@gmail.com> wrote:
>
> mapfile -d '' m < <( printf %s\\0 ab cd ) ; printf %s\\0 "${m[@]}"
>
> On Wed, May 15, 2024, 21:22 Peng Yu <pengyu.ut@gmail.com> wrote:
>>
>> Hi,
>>
>> $ echo -ne '\000a' | { read -N 1 x; declare -p x ; }
>> declare -- x="a"
>>
>> read just skip \000 and read the next char "a". What if I want to read
>> the underlying character, in this case, it is \000, then x should be
>> just an empty string.
>>
>> Can this be achieved somehow in bash?
>>
>> --
>> Regards,
>> Peng
>>
--
Regards,
Peng
- How to read \000?, Peng Yu, 2024/05/15
- Re: How to read \000?, alex xmb sw ratchev, 2024/05/15
- Re: How to read \000?,
Peng Yu <=
- Re: How to read \000?, Jeffrey Walton, 2024/05/15
- Re: How to read \000?, Greg Wooledge, 2024/05/15
- Re: How to read \000?, Jeffrey Walton, 2024/05/15
- Re: How to read \000?, Koichi Murase, 2024/05/15
- Re: How to read \000?, Greg Wooledge, 2024/05/15
Re: How to read \000?, Grisha Levit, 2024/05/15