diff options
author | tv <tv@also> | 2011-05-26 21:43:31 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-05-26 21:43:31 +0200 |
commit | e0fbed1fe20f2af99ed29c37b77fdc550191bcfc (patch) | |
tree | ca6ae37225079ade250acfebb81aa78b85c31ed7 /bin | |
parent | 884100fc8ab0c46a08314bc68efe7fb0ee731c42 (diff) |
fillxx: initial commit
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/fillxx | 6 |
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 |