All public logs
From Notes_Wiki
Combined display of all available logs of Notes_Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 07:34, 17 May 2023 Saurabh talk contribs created page Simple while loop with count in shell script (Created page with "Home > Shell scripting > Useful bash shell scripts > Simple while loop with count in shell script If we need to execute something specific no. of times, we can use while loop with count such as: <pre> q=0; while q -lt 3 ; do ((q++)); echo $q; done </pre> Here update value of limit from 3 to the desired number of loop executions. Also instead of echo $q; put the command to be executed again and again. For example to generate 10 random pa...")