An open API service indexing awesome lists of open source software.

https://github.com/froggs/system-passwd

Easily search for system users on Unix-based systems
https://github.com/froggs/system-passwd

Last synced: 5 months ago
JSON representation

Easily search for system users on Unix-based systems

Awesome Lists containing this project

README

          

=head2 NAME

System::Passwd - easily search for system users

=head2 DESCRIPTION

L is a Perl 6 distribution for searching the C file. It provides subroutines to search for a System::Passwd::User user by uid, username or full name.

=head2 SYNOPSIS

use System::Passwd;

my $root_user = get_user_by_uid(0);

say $root_user.username;
say $root_user.uid;
say $root_user.gid;
say $root_user.fullname;
say $root_user.login_shell;
say $root_user.home_dir;

# can search for users other methods
my $user = get_user_by_username('sillymoose');

# or:
my $user = get_user_by_fullname('David Farrell');

=head2 LICENSE

FreeBSD - see LICENSE

=head2 AUTHOR

David Farrell

=cut