Untitled
unknown
plain_text
19 days ago
103 B
2
Indexable
#!/bin/sh read -p "Enter your number: " num while [ $num -gt 0 ]; do echo $num ((num--)) done
Editor is loading...
Leave a Comment
#!/bin/sh read -p "Enter your number: " num while [ $num -gt 0 ]; do echo $num ((num--)) done