add 3 lectures for SFedU

This commit is contained in:
Edward Emelianov
2021-11-11 20:44:40 +03:00
parent 5d6974b950
commit 0d8fbff1dd
238 changed files with 2746 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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
}