summaryrefslogtreecommitdiffstats
path: root/retiolum/bin/fillxx
blob: 5e558362ee0731273ce7e2008fa159d3a4f590cc (plain)
1
2
3
4
5
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