/usr/share/awk
NameSizeModeActions
assert.awk3820644editdlrm
bits2str.awk3270644editdlrm
cliff_rand.awk3070644editdlrm
ctime.awk2330644editdlrm
ftrans.awk3170644editdlrm
getopt.awk22410644editdlrm
gettime.awk24910644editdlrm
group.awk18100644editdlrm
join.awk3780644editdlrm
libintl.awk2380644editdlrm
nextfile.awk3860644editdlrm
noassign.awk4220644editdlrm
ord.awk9370644editdlrm
passwd.awk11640644editdlrm
readable.awk4460644editdlrm
rewind.awk4040644editdlrm
round.awk6610644editdlrm
strtonum.awk14550644editdlrm
zerofile.awk4240644editdlrm
Edit: /usr/share/awk/passwd.awk (1164B)
# passwd.awk --- access password file information # # Arnold Robbins, arnold@skeeve.com, Public Domain # May 1993 # Revised October 2000 BEGIN { # tailor this to suit your system _pw_awklib = "/usr/libexec/awk/" } function _pw_init( oldfs, oldrs, olddol0, pwcat, using_fw) { if (_pw_inited) return oldfs = FS oldrs = RS olddol0 = $0 using_fw = (PROCINFO["FS"] == "FIELDWIDTHS") FS = ":" RS = "\n" pwcat = _pw_awklib "pwcat" while ((pwcat | getline) > 0) { _pw_byname[$1] = $0 _pw_byuid[$3] = $0 _pw_bycount[++_pw_total] = $0 } close(pwcat) _pw_count = 0 _pw_inited = 1 FS = oldfs if (using_fw) FIELDWIDTHS = FIELDWIDTHS RS = oldrs $0 = olddol0 } function getpwnam(name) { _pw_init() if (name in _pw_byname) return _pw_byname[name] return "" } function getpwuid(uid) { _pw_init() if (uid in _pw_byuid) return _pw_byuid[uid] return "" } function getpwent() { _pw_init() if (_pw_count < _pw_total) return _pw_bycount[++_pw_count] return "" } function endpwent() { _pw_count = 0 }