> #!/bin/bash
>
>
> echo "please enter your login ID"
>
> read login_id
>
>
> while[ $login_id -ne `grep $login_id /etc/passwd | cut -f1 -d:`
prompts for any users login_id and returns the value of
that users HOME directory and full name
my question is are the backticks in the right place?
thanks
for any help
airmax_sk@yahoo.com