Hi,

Writing TEXT processing script in BASH is just a quick job.  For real
world needs, use AWK (See Karsten's answer to your post), PERL, or PYTHON.

Besides, Karsten's awk script addresses needs to keep them lower case
etc.  IF you use BASH, you need to run 'tr' command externally.  AWK,
PERL, and PYTHON script can be extended easily.  

All said, BASH has parameter substitution command which addresses your
question.

READ the man page then see below.  (Or grab one of those Oreilly books.)

On Sat, Aug 25, 2001 at 05:28:17PM -0700, Mike Egglestone wrote:
> How do I chomp off part of the first name so that the
> output looks like this:     from johnny smith
> > You can also use bash:
> > 
> > #!/bin/bash
> > pid=1000;
> > while read n1 n2; do
> > let pid=$pid+1
> > echo ${n1}_${n2}:password:${pid}:${pid}:,,,/home/${n1}_${n2}:/bin/bash

echo 
${n1:0:1}${n2}:${n1:0:2}${n2:0:2}:${pid}:${pid}:,,,/home/${n1:0:1}${n2}:/bin/bash

This makes even slightly customized password:-)

See use of ${parameter##word} ${parameter%%word} etc. for other
substitution.

> > done
> > 
> > filter your source data with this script.  Then onto newusers.  :-)
-- 
~\^o^/~~~ ~\^.^/~~~ ~\^*^/~~~ ~\^_^/~~~ ~\^+^/~~~ ~\^:^/~~~ ~\^v^/~~~ 
+  Osamu Aoki <[EMAIL PROTECTED]>, GnuPG-key: 1024D/D5DE453D  +
+  My debian quick-reference, http://www.aokiconsulting.com/quick/    +

Reply via email to