summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorroot <root@krebs>2011-05-26 23:16:40 +0200
committerroot <root@krebs>2011-05-26 23:16:40 +0200
commit904e6bf94a930e4bf056277829f0c8ecf5edb3e7 (patch)
treeb9b366345e2e6d12ad77ba9592f32e74f3e16dc6 /modules
parent6ba64b91e4b68a996e837622a63d5b3b17016d7c (diff)
move fillxx to retiolum/bin
Diffstat (limited to 'modules')
-rwxr-xr-xmodules/retiolum/bin/fillxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/retiolum/bin/fillxx b/modules/retiolum/bin/fillxx
new file mode 100755
index 00000000..5e558362
--- /dev/null
+++ b/modules/retiolum/bin/fillxx
@@ -0,0 +1,6 @@
+#! /bin/sh
+while echo $1 | grep -q xx; do
+ xx=`od -An -tx1 -N 1 /dev/urandom | tr -d \ `
+ set -- `echo $1 | sed s/xx/$xx/`
+done
+echo $1