Is Your e3000 Environment Secure? - by Mark Bixby

Is Your e3000 Environment Secure? - HPWorld 2003 page 41August 14, 2003
Generate random passwords in
installation jobs
A shell script example:
PASSWORD=`echo $$ | awk ' {\
srand($0);
for (i=0; i < 8; i++) \
pass=pass \
substr("ABCDEFGHIJKLMNOPQRSTUVWXYZ",1+int(26*rand()),1);
print pass }'`
callci "NEWACCT FOOBAR;PASS=$PASSWORD"