2021-11-11 20:44:40 +03:00

16 lines
274 B
Plaintext

BEGIN {
print "List of users and shells"
print " UserName \t HomePath"
print "-----------------------"
FS=":"
}
{
print $1 " \t " $6
}
END {
home=ENVIRON["HOME"]
name=ENVIRON["USER"]
print "-----------------------"
print "Your name is " name " and home is " home
}