Write a bash script that takes a single argument representing the height of a triangle and uses a for loop with the seq command to print a triangle of asterisks (*).
$ ./for_loop_triangle.sh 5
*
**
***
****
*****
$ ./for_loop_triangle.sh 3
*
**
***