mirror of
https://github.com/eddyem/lectures.git
synced 2025-12-06 18:45:18 +03:00
16 lines
274 B
Plaintext
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
|
|
}
|