136 lines
2.5 KiB
Bash
Executable File
136 lines
2.5 KiB
Bash
Executable File
#!/bin/sh
|
|
# $Id: itemlist.sh,v 1.3 2005/12/27 15:53:06 tom Exp $
|
|
|
|
#
|
|
# Description:
|
|
# This demonstrates the CDK command line
|
|
# interface to the itemlist list widget.
|
|
#
|
|
|
|
#
|
|
# This gets the password file.
|
|
#
|
|
getPasswordFile()
|
|
{
|
|
system=$1
|
|
file=$2
|
|
|
|
#
|
|
# Depeding on the system, get the password file
|
|
# using nicat, ypcat, or just plain old /etc/passwd
|
|
#
|
|
if [ "$system" = "NIS" ]; then
|
|
niscat passwd.org_dir | sort > $file
|
|
elif [ "$system" = "YP" ]; then
|
|
ypcat passwd | sort > $file
|
|
else
|
|
sort /etc/passwd > $file
|
|
fi
|
|
}
|
|
|
|
#
|
|
# This displays account information.
|
|
#
|
|
displayAccountInformation()
|
|
{
|
|
userAccount=$1
|
|
passwordFile=$2
|
|
|
|
#
|
|
# Get the user account information.
|
|
#
|
|
line=`grep "^${userAccount}" $passwordFile`
|
|
uid=`echo $line | cut -d: -f3`
|
|
gid=`echo $line | cut -d: -f4`
|
|
info=`echo $line | cut -d: -f5`
|
|
home=`echo $line | cut -d: -f6`
|
|
shell=`echo $line | cut -d: -f7`
|
|
|
|
#
|
|
# Create the label message information.
|
|
#
|
|
accountMessage="<C></U>Account
|
|
<C><#HL(30)>
|
|
Account: </U>${userAccount}
|
|
UID : </U>${uid}
|
|
GID : </U>${gid}
|
|
Info : </U>${info}
|
|
Home : </U>${home}
|
|
Shell : </U>${shell}
|
|
<C><#HL(30)>
|
|
<C>Hit </R>space<!R> to continue"
|
|
|
|
#
|
|
# Create the popup label.
|
|
#
|
|
${CDK_LABEL} -m "${accountMessage}" -p " "
|
|
}
|
|
|
|
#
|
|
# Create some global variables.
|
|
#
|
|
CDK_ITEMLIST="${CDK_BINDIR=..}/cdkitemlist"
|
|
CDK_LABEL="${CDK_BINDIR=..}/cdklabel"
|
|
|
|
tmpPass="${TMPDIR=/tmp}/sl.$$"
|
|
output="${TMPDIR=/tmp}/output.$$"
|
|
userAccounts="${TMPDIR=/tmp}/ua.$$"
|
|
|
|
TYPE="Other";
|
|
|
|
#
|
|
# Chop up the command line.
|
|
#
|
|
set -- `getopt nNh $*`
|
|
if [ $? != 0 ]
|
|
then
|
|
echo $USAGE
|
|
exit 2
|
|
fi
|
|
for c in $*
|
|
do
|
|
case $c in
|
|
-n) TYPE="YP"; shift;;
|
|
-N) TYPE="NIS"; shift;;
|
|
-h) echo "$0 [-n YP] [-N NIS+] [-h]"; exit 0;;
|
|
--) shift; break;;
|
|
esac
|
|
done
|
|
|
|
#
|
|
# Create the message for the item list.
|
|
#
|
|
title="<C>Pick an account you want to view."
|
|
label="Account Name "
|
|
buttons=" OK
|
|
Cancel "
|
|
|
|
#
|
|
# Get the password file and stick it into the temp file.
|
|
#
|
|
getPasswordFile "${TYPE}" "$tmpPass"
|
|
|
|
#
|
|
# Get the user account from the password file.
|
|
#
|
|
awk 'BEGIN {FS=":"} {printf "</R>%s\n", $1}' $tmpPass | sort > ${userAccounts}
|
|
|
|
#
|
|
# Create the item list.
|
|
#
|
|
${CDK_ITEMLIST} -d 3 -L "${label}" -T "${title}" -B "${buttons}" -f "${userAccounts}" 2> ${output}
|
|
selected=$?
|
|
test $selected = 255 && exit 1
|
|
|
|
answer=`cat ${output}`
|
|
|
|
#
|
|
# Display the account information.
|
|
#
|
|
displayAccountInformation $answer $tmpPass
|
|
|
|
#
|
|
# Clean up.
|
|
#
|
|
rm -f ${output} ${tmpPass} ${userAccounts}
|