Je testais la vitesse de Bash et Python en exécutant une boucle 1 milliard de fois. $ cat python.py #!/bin/python # python v3.5 i=0; while i<=1000000000: i=i+1; Code Bash: $ cat bash2.sh #!/bin/bash # bash v4.3 i=0 while [[ $i -le 1000000000 ]] do let i++ done En utilisant la timecommande, j'ai...