How to creat a half-triangle in bash(Ubuntu)?

how to create a half-triangle like this
and that will accept an input from the user, Dimension of the triangle will be based on the users input.

example:
enter the dimension: 5

*****

-****

--***

---**

----*

thankyou

Is this a homework question?

Not sure why you need the underscores but if is the asterisks that are important then you could try using escape codes to do it...

You will need to do the _animation_ yourself as it looks like a homework question...

the simple case however is:-

horiz=23
vert=11

printf "\x1B["$vert";"$horiz"f*"

Will print an asterisk at position 23 across and 11 down in a terminal window...

This is for bash, and might work on other shells...

Bazza, G0LCU...

Do not post classroom or homework problems in the main forums. Homework and coursework questions can only be posted in this forum under special homework rules.

Please review the rules, which you agreed to when you registered, if you have not already done so.

More-than-likely, posting homework in the main forums has resulting in a forum infraction. If you did not post homework, please explain the company you work for and the nature of the problem you are working on.

If you did post homework in the main forums, please review the guidelines for posting homework and repost.

Thank You.

The UNIX and Linux Forums.