2014-08-20 22:01:24 -07:00
|
|
|
Array index out of bounds
|
|
|
|
fish: show "$foo[2]"
|
|
|
|
^
|
|
|
|
Array index out of bounds
|
|
|
|
fish: show $foo[2]
|
|
|
|
^
|
|
|
|
Array index out of bounds
|
|
|
|
fish: show "$foo[1 2]"
|
|
|
|
^
|
|
|
|
Array index out of bounds
|
|
|
|
fish: show $foo[1 2]
|
|
|
|
^
|
|
|
|
Array index out of bounds
|
|
|
|
fish: show "$foo[2 1]"
|
|
|
|
^
|
|
|
|
Array index out of bounds
|
|
|
|
fish: show $foo[2 1]
|
|
|
|
^
|
2014-08-21 00:26:14 -07:00
|
|
|
Invalid index value
|
|
|
|
fish: echo "$foo[d]"
|
|
|
|
^
|
|
|
|
Invalid index value
|
|
|
|
fish: echo $foo[d]
|
|
|
|
^
|
|
|
|
Array index out of bounds
|
|
|
|
fish: echo ()[1]
|
|
|
|
^
|
|
|
|
Invalid index value
|
|
|
|
fish: echo ()[d]
|
|
|
|
^
|
2015-05-15 17:10:29 -07:00
|
|
|
$) is not a valid variable in fish.
|
|
|
|
fish: echo $$paren
|
|
|
|
^
|