summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authortv <tv@also>2011-05-26 21:43:31 +0200
committertv <tv@also>2011-05-26 21:43:31 +0200
commite0fbed1fe20f2af99ed29c37b77fdc550191bcfc (patch)
treeca6ae37225079ade250acfebb81aa78b85c31ed7 /bin
parent884100fc8ab0c46a08314bc68efe7fb0ee731c42 (diff)
fillxx: initial commit
Diffstat (limited to 'bin')
-rwxr-xr-xbin/fillxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/fillxx b/bin/fillxx
new file mode 100755
index 00000000..5e558362
--- /dev/null
+++ b/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