Date: Wed, 7 Jun 2000 11:36:47 -0400 From: Pete Fritchman <petef@netreach.net> To: Ben Vaughn <bvaughn@pns.net> Cc: freebsd-isp@freebsd.org Subject: Re: deleting users from txt file source Message-ID: <20000607113647.C2932@netreach.net> In-Reply-To: <Pine.BSF.3.96.1000607100357.5799A-100000@shell01.pns.net> References: <Pine.BSF.4.21.0006071227030.91761-100000@atlas.usls.edu> <Pine.BSF.3.96.1000607100357.5799A-100000@shell01.pns.net>
next in thread | previous in thread | raw e-mail | index | archive | help
Probably a short shell script: #!/bin/sh for user in `cat file.txt`; do pw userdel $user -r done -Pete ++ 07/06/00 10:04 -0500 - Ben Vaughn: >I would be interested in hearing how you all helped him. > >:-) > >-biv > >On Wed, 7 Jun 2000, Francis A. Vidal wrote: > >> hi all, >> >> thanks to those who helped me =) >> >> -- >> francis vidal university of st. la salle, bacolod city, philippines >> . . . . . . . PGP key available via e-mail / subject: get PGP key >> u s l s N E T tel nos. (+63.34).433.3526 / fax (+63.34).434.0415 >> >> >> >> To Unsubscribe: send mail to majordomo@FreeBSD.org >> with "unsubscribe freebsd-isp" in the body of the message >> > > > >To Unsubscribe: send mail to majordomo@FreeBSD.org >with "unsubscribe freebsd-isp" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-isp" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20000607113647.C2932>