Guest User

Untitled

a guest
Feb 20th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.27 KB | None | 0 0
  1. #!/usr/bin/env tclsh
  2. set f [open ~/Desktop/file.txt w];
  3. for {set i 41} {$i<=64} {incr i} {
  4.   for {set j 0} {$j<256} {incr j} {
  5.     for {set k 0} {$k<256} {incr k} {
  6.       for {set l 0} {$l<256} {incr l} {
  7.         puts $f $i.$j.$k.$l
  8.     }  
  9.       }
  10.     }
  11.   }
  12. close $f
Add Comment
Please, Sign In to add comment