#!/bin/bash
while true
do
work=0
done
i=1
while [ $i -le 10 ]
do
echo "$i"
i=$(( $i + 1 ))
done
Categories: Bash language
#!/bin/bash
while true
do
work=0
done
i=1
while [ $i -le 10 ]
do
echo "$i"
i=$(( $i + 1 ))
done
572 Comments