aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test8.in
Commit message (Collapse)AuthorAge
* Allow and/or statements to attach to the if/while headerGravatar ridiculousfish2015-12-19
| | | | | | | | | | For example: if false; or true; echo hello; end will output 'hello' now. Fixes #1428
* Write tests for new if/and/or behavior (#1428)Gravatar ridiculousfish2015-12-19
| | | | They fail for now.
* Make if statements always return success at the end, matching otherGravatar ridiculousfish2014-02-07
| | | | shells. Fixes #1061.
* Fix case when first index is command substitutionGravatar maxfl2012-07-08
|
* Fix case when second limit is a variable:Gravatar maxfl2012-07-08
| | | | echo $PATH[1..$n]
* Add variable expand rangesGravatar maxfl2012-07-08
echo $PATH[-1..1] #now works Add tests for ranges