Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

bash while loop n times

for (( i=0; i<10; ++i)); do
    [ -e filename ] && break
    sleep 10
done
 
PREVIOUS NEXT
Tagged: #bash #loop #times
ADD COMMENT
Topic
Name
6+4 =