Plan 9 from Bell Labs’s /usr/web/sources/contrib/maht/blogger/getuserpasswd.c

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


#include <u.h>
#include <libc.h>
#include <auth.h>

void
main(int argc, char *argv[])
{
	UserPasswd* up;

	ARGBEGIN{
	}ARGEND

	if(argc != 1){
		fprint(2, "usage: getuserpasswd factotumkey\n");
		exits("badargs");
	}

	up = auth_getuserpasswd(nil, argv[0]);
	
	if(up) {
		print("%s", up->passwd);
		free(up);
		exits(nil);
	}

	exits("not found");
}

// 8c getuserpasswd.c && 8l getuserpasswd.8 && mv 8.out getuserpasswd

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.