Date: Fri, 20 Jun 2003 08:38:58 -0400 From: "Raymond T. Sundland" <raymond@sundland.com> To: Murat USTUNTAS <ustuntas@bimel.com.tr> Cc: questions@freebsd.org Subject: Re: How can convert user expired days in human readable ? Message-ID: <3EF30062.1060506@sundland.com> In-Reply-To: <3EF2FFB6.5000706@bimel.com.tr> References: <3EF2FFB6.5000706@bimel.com.tr>
next in thread | previous in thread | raw e-mail | index | archive | help
Within the master.passwd, the time is stored in seconds since the Epoch, and there are standard C and POSIX functions for converting this into any format you want. I don't know much about python, but within Perl you can use strftime() to convert the date. You would do something similar to: strftime("%D", localtime($unixtime)) where $unixtime is assigned to the value you pulled from the master.passwd file. The %D simply returns a MM/DD/YY format date. Check to see if Python has similar functions... they are POSIX compliant. Murat USTUNTAS wrote: > Hello all, > > On my system, some users have expire day user settings. I write a > (python) script > then parse the: 7.th selection in the master.passwd > > blabla:xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:1064005200:xxxx:xxxx:xxxx:xxxx > > How can I conver the number like 1064005200 to human readable date > format ? > Or, there is a way to collect the information from a command > interactively ? > > Regards, > > Murat Ustuntas > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3EF30062.1060506>