13 lines
133 B
Bash
13 lines
133 B
Bash
BEGIN {
|
|
print "User Shell"
|
|
print "---- -----"
|
|
FS=":"
|
|
}
|
|
|
|
/bash/ { print $1 " "$7 }
|
|
|
|
END {
|
|
print "\nNo more Bash-users to list"
|
|
}
|
|
|