Guest User

Untitled

a guest
Feb 20th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 0.26 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. close $f
Add Comment
Please, Sign In to add comment