changeset 8878:6dff80b6fb44

<shachaf> ` echo $\'#!/usr/bin/python\\n\\nimport random\\nimport string\\n\\nprint "".join(random.choice(string.ascii_lowercase) for _ in xrange(15))\' > bin/password; chmod +x bin/password
author HackBot
date Fri, 29 Jul 2016 00:54:55 +0000
parents 405da606e69e
children 3899f0a01d7d
files bin/password
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/password	Fri Jul 29 00:54:55 2016 +0000
@@ -0,0 +1,6 @@
+#!/usr/bin/python
+
+import random
+import string
+
+print "".join(random.choice(string.ascii_lowercase) for _ in xrange(15))