Skip to content

Instantly share code, notes, and snippets.

@mori-dev
Created February 3, 2010 09:47
Show Gist options
  • Save mori-dev/293516 to your computer and use it in GitHub Desktop.
Save mori-dev/293516 to your computer and use it in GitHub Desktop.
(defun my-make-test-uid-data (st en path)
(with-temp-buffer
(loop for i from st to en
do (insert (format "%014d_vr.ezweb.ne.jp\n" i)))
(delete-backward-char 1)
(write-region (point-min) (point-max) path)))
(my-make-test-uid-data 2000000 2004999 "~/2000000_2004999.csv")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment