How do you write a mini script involving AWK to set a password that consists 7 characters [A-Za-z] generated randomly? The database output is to have the format:
UserID:password:SSN
For example, I did the following script:
awk 'BEGIN {FS=","} {
{$1=substr($1, 1, 1);
$2=substr($2...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.