Link to home
Create AccountLog 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
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
... 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.