CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download
Project: string.sh
Views: 28
Image: ubuntu2204
echo "Enter a number n Within range 5 to 20:"
read n

echo
echo "All numbers within range 1 to $n: "

count=1
while [ $count -le $n ]
do
    echo -en "$count\t"
    (( count++ ))
done

echo