What's the meaning of zsh's default IFS=$' \t\n\C-@' , the "\C-@" part

shawn

What's the meaning of zsh's default IFS=$' \t\n\C-@', the \C-@ part

Kamil Maciorowski

\C-@ denotes null character here. This string inside $'…' expands to the actual null character.

Zsh supports null characters in strings. Some other shells don't, so trying to put the null character in their IFS doesn't make sense. Compare this answer.

In addition other shells may not expand \C- sequences inside $'…' or may not support $'…' at all (see this question).

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

What's the meaning of this part of code?

From Dev

What's the meaning of default: classes in this makefile?

From Dev

What's the meaning of interface{}?

From Dev

What's the meaning of #:: in Scala?

From Dev

what's meaning of %@ ... @ in ruby?

From Dev

Perl: what's the meaning of .=~

From Dev

What's the meaning of "it()" in Jasmine?

From Dev

What's the meaning 'EEE'

From Dev

What's the meaning of "WHEN ? THEN"?

From Dev

what's meaning of %@ ... @ in ruby?

From Dev

What is the `$` 's meaning in this code?

From Dev

What's the meaning of ? and : in this function?

From Dev

What's the meaning of -> in scala

From Dev

What is the Exact Use and Meaning of "IFS=!"

From Dev

What's the difference between these 2 ifs?

From Dev

what's the difference meaning of the keyword static between c and c++?

From Dev

What's the meaning of "seekable" stream?

From Dev

What's the meaning of as!,init? in swift?

From Java

What's the meaning of /gi in a regex?

From Dev

what's the meaning of "this.this$0"?

From Dev

what's the meaning of _ in this scala code?

From Dev

What is the "$0 =~ s!.*/!!" meaning in perl?

From Dev

what's the meaning of android:orderInCategory?

From Dev

What's the meaning of 'blacklisted' on GStreamer?

From Dev

What's the meaning of "expect <<- DONE"?

From Dev

What's the meaning of "!", "?", "_", and "." syntax in elixir

From Dev

What's the meaning of \'$char in bash?

From Dev

What's the meaning of the "Psp" in “PspCreatePicoProcess"

From Dev

In Bash scripting, what's the meaning of " $! "?