Skip to content

Instantly share code, notes, and snippets.

@JoseRibeiro
Created August 31, 2012 14:42
Show Gist options
  • Select an option

  • Save JoseRibeiro/3553843 to your computer and use it in GitHub Desktop.

Select an option

Save JoseRibeiro/3553843 to your computer and use it in GitHub Desktop.

Revisions

  1. JoseRibeiro created this gist Aug 31, 2012.
    8 changes: 8 additions & 0 deletions awk.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,8 @@
    #!/bin/bash
    awk 'BEGIN {
    i = 100000000
    while (i <= 1000000000000000) {
    i * i
    i++
    }
    }'