คุณสามารถใช้ฟังก์ชันที่ไม่ระบุชื่อเพื่อกำหนดขอบเขตสำหรับตัวแปร จากman zshall
:
ANONYMOUS FUNCTIONS
If no name is given for a function, it is `anonymous' and is handled
specially. Either form of function definition may be used: a `()' with
no preceding name, or a `function' with an immediately following open
brace. The function is executed immediately at the point of definition
and is not stored for future use. The function name is set to
`(anon)'.
Arguments to the function may be specified as words following the clos‐
ing brace defining the function, hence if there are none no arguments
(other than $0) are set. This is a difference from the way other func‐
tions are parsed: normal function definitions may be followed by cer‐
tain keywords such as `else' or `fi', which will be treated as argu‐
ments to anonymous functions, so that a newline or semicolon is needed
to force keyword interpretation.
Note also that the argument list of any enclosing script or function is
hidden (as would be the case for any other function called at this
point).
Redirections may be applied to the anonymous function in the same man‐
ner as to a current-shell structure enclosed in braces. The main use
of anonymous functions is to provide a scope for local variables. This
is particularly convenient in start-up files as these do not provide
their own local variable scope.
For example,
variable=outside
function {
local variable=inside
print "I am $variable with arguments $*"
} this and that
print "I am $variable"
outputs the following:
I am inside with arguments this and that
I am outside
Note that function definitions with arguments that expand to nothing,
for example `name=; function $name { ... }', are not treated as anony‐
mous functions. Instead, they are treated as normal function defini‐
tions where the definition is silently discarded.
แต่นอกเหนือจากนั้น - ถ้าคุณไม่ได้ใช้export
ของคุณใน.zshrc
ทุกตัวแปรควรจะมองเห็นได้ในเซสชั่นแบบโต้ตอบในปัจจุบันของคุณและมันไม่ควรจะถูกส่งออกไปยัง subshells
ในฐานะที่เป็น terdon อธิบายในความคิดเห็นของเขาexport -n
ในbash
เพียงทำให้ทรัพย์สิน "ส่งออก" จะถูกลบออกจากตัวแปรเพื่อใช้export -n GREP_OPTIONS=--color=always
เทียบเท่ากับการส่งออกไม่ได้ใช้เลย GREP_OPTIONS=--color=always
-
ในคำอื่น ๆ export
ที่จะได้รับพฤติกรรมที่ต้องการก็ไม่ได้ใช้ ในทางกลับ.zshrc
กันคุณควรมี
GREP_OPTIONS=--color=always
ซึ่งจะทำให้ตัวแปรพร้อมใช้งานสำหรับเชลล์ทั้งหมด (แบบโต้ตอบและไม่ได้ลงชื่อเข้าใช้) ที่คุณเรียกใช้เช่นเดียวกับที่คุณต้องการ แต่จะไม่ถูกส่งออกไปยังเชลล์ลูก
export -n
เพียงยกเลิกการส่งออกตัวแปรที่ส่งออก