Link to home
Start Free TrialLog in
Avatar of Westez
Westez

asked on

Aix 5.2 - How to print out the user characteristics?

I'm asking if there is a way you can print all of the user characteristics from the command line? I could capture screen prints but I'd rather not.  I've googled for a solution but I'm not finding an answer.

Thanks
ASKER CERTIFIED SOLUTION
Avatar of woolmilkporc
woolmilkporc
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
... and if you really want to print the output immediately, pipe it to a printing frontend such as lp, lpr, pr, enq, qprt, instead of redirecting it to a text file:

lsuser -c  ALL | sed -e "s/:/  /g" | lpr -P[queue]

See the respective man pages for options.
Avatar of Westez
Westez

ASKER

Thanks for the detailed explanation.