#!/bin/bashx=1while [ $x -le 5 ]do echo "Welcome $x times" x=$(( $x + 1 ))done
Standard input is empty
Welcome 1 times Welcome 2 times Welcome 3 times Welcome 4 times Welcome 5 times
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!