Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
for u in $(cat usernamelist)
do
echo $u is in real life $(finger -m $u | awk '{ if (NR==1) {print $7 $8} }')
done >> userlistwithfullnames
for u in $(cat usernamelist)
do
echo "$u is in real life \c"
finger -m $u | awk '{ if (NR==1) {print $7 $8} }'
done >> userlistwithfullnames
#!/usr/bin/ksh
#create usersnamelist
ls -l /users | awk '{print $3}' | sort -u > /tmp/usernamelist
# process list to get real life name
for u in $(cat /tmp/usernamelist)
do
echo "$u is in real life \c"
finger -m $u | awk '{ if (NR==1) {print $7 " " $8} }'
done >> userlistwithfullnames
#cleanup
rm -f /tmp/usernamelist
for u in $(ls -l /users | awk '{print $3}' sort -u )
do
echo "$u is in real life \c"
finger -m $u | awk '{ if (NR==1) {print $7 " " $8} }'
done >> userlistwithfullnames