Revision history of "Bash loop tricks"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 13:36, 13 May 2019Adk44 talk contribs 115 bytes +115 Created page with "===Simple counter loop=== <pre> for ((i=1; i <= $max ; i++)) do echo $i done </pre> $max can be a number also."