Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

16 rader
388 B

  1. #!/usr/bin/env perl
  2. #
  3. # Dumb wrapper to get the gecos information from a uid/username.
  4. foreach my $input (@ARGV){
  5. my $gecos = undef;
  6. my $uid = undef;
  7. my $name = undef;
  8. if ( $input =~ m/^\d+$/ ) {
  9. ( $name,$uid,$gecos ) = ( getpwuid($input) )[0,2,6];
  10. } else {
  11. ( $name,$uid,$gecos ) = ( getpwnam($input) )[0,2,6];
  12. }
  13. print "$name is '$gecos' uid '$uid'\n" if $gecos;
  14. }