#!/usr/bin/perl # whoami for PPT # Public domain. # by David Koenig.
print getpwuid($>)."\n"; __END__ =head1 NAME whoami - display effective user ID =head1 SYNOPSIS whoami =head1 DESCRIPTION The I<whoami> utility is obsolite. Use I<id -un>. This utility simply returns the effective user ID. =head1 SEE ALSO L<id(1)> =head1 AUTHOR David Koenig <[EMAIL PROTECTED]>. =head1 COPYRIGHT This page, as well as the implementation of the utility, are public domain.
