diff options
Diffstat (limited to 'scripts/compound_command.bash')
-rw-r--r-- | scripts/compound_command.bash | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/compound_command.bash b/scripts/compound_command.bash index 0db8ff8..0d3321e 100644 --- a/scripts/compound_command.bash +++ b/scripts/compound_command.bash @@ -356,3 +356,8 @@ for((i=1,j=2;i!=2&&j!=4;++i)) do echo $i $j done +python_versions=(2.6 2.7 3.0 3.1) +for ((i = "${#python_versions[@]}"; i >= 0; i--)) +do + echo $i +done |