Content deleted Content added
→Julia: copy editing and linking (wikEd belatedly off) |
→KornShell 93 (and compliant shells: ksh93, bash4...): copy editing |
||
Line 705:
values(phonebook)
===
In [[Korn Shell|KornShell]] 93, and compliant shells (ksh93, bash4...), the following operations can be used with associative arrays.
<!-- Tested in ksh93 r -->▼
▲<!-- Tested in ksh93 r -->
Definition:
<syntaxhighlight lang="ksh">
Line 714 ⟶ 715:
phonebook=(["Sally Smart"]="555-9999" ["John Doe"]="555-1212" ["[[J. Random Hacker]]"]="555-1337");
</syntaxhighlight>
Dereference:
<syntaxhighlight lang="ksh">
|