Help for this page

Select Code to Download


  1. or download this
    my ($shell, $uid);
    while (($uid, $shell) = (getpwent)[2,8]) {
        last if $uid == $<;
    }
    say $shell;