Untitled

Anonymous
plain_text
03/07/2025 5:57 PM
140 B
16
Indexable
#!/bin/sh

read -p "Enter your number: " num

while [ $num -gt 0 ]; do
    echo $num
    ((num--))
done
Editor is loading...
Leave a Comment