non-interactive passwd

2009-03-24 Thread Wojciech Puchar
how to change password for account non-interactively from commandline/shell script? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to

Re: non-interactive passwd

2009-03-24 Thread Mel Flynn
On Tuesday 24 March 2009 14:06:57 Wojciech Puchar wrote: how to change password for account non-interactively from commandline/shell script? pw usermod uname -h fd or -H fd, see manpage. -- Mel ___ freebsd-questions@freebsd.org mailing list

Re: non-interactive passwd

2009-03-24 Thread Wojciech Puchar
exactly what i needed - and missed reading manual On Tue, 24 Mar 2009, Mel Flynn wrote: On Tuesday 24 March 2009 14:06:57 Wojciech Puchar wrote: how to change password for account non-interactively from commandline/shell script? pw usermod uname -h fd or -H fd, see manpage. -- Mel

Re: non-interactive passwd

2009-03-24 Thread Jon Radel
Wojciech Puchar wrote: how to change password for account non-interactively from commandline/shell script? expect http://en.wikipedia.org/wiki/Expect is a more general purpose solution in that problem space, though obviously more effort in this specific case. -- --Jon Radel

Re: non-interactive passwd

2009-03-24 Thread Wojciech Puchar
expect http://en.wikipedia.org/wiki/Expect is a more general purpose solution in that problem space, though obviously i know expect, and i use it when there is no straight way. usually it is - i used pw usermod -h and worked fine. thanks all for help. i read manual too briefly

Re: Non Interactive passwd change via script....

2007-04-04 Thread Agus
2007/4/3, Kevin Kinsey [EMAIL PROTECTED]: Agus wrote: Hi everybody its been a few days now, since im trying to do a tcsh script to automatize the process of creating users in my system Users register via web, and info is saved in a MySQL DB and in a file. the script reads from

Re: Non Interactive passwd change via script....

2007-04-04 Thread Vince
Agus wrote: snip OK..thanks for the heads up about responding The problem isnt adding the useri ve done that..the problem is creating the password for the user as i tried to say in the first email... Assuming you dont mean actually generating the password maybe you need the

Re: Non Interactive passwd change via script....

2007-04-04 Thread Agus
2007/4/4, Vince [EMAIL PROTECTED]: Agus wrote: snip OK..thanks for the heads up about responding The problem isnt adding the useri ve done that..the problem is creating the password for the user as i tried to say in the first email... Assuming you dont mean actually

Non Interactive passwd change via script....

2007-04-03 Thread Agus
Hi everybody its been a few days now, since im trying to do a tcsh script to automatize the process of creating users in my system Users register via web, and info is saved in a MySQL DB and in a file. the script reads from the file and begins adding users with pw. but im stuck on how to

Re: Non Interactive passwd change via script....

2007-04-03 Thread Kevin Kinsey
Agus wrote: Hi everybody its been a few days now, since im trying to do a tcsh script to automatize the process of creating users in my system Users register via web, and info is saved in a MySQL DB and in a file. the script reads from the file and begins adding users with pw. but im

Re: Non Interactive passwd change via script....

2007-04-03 Thread Kevin Kinsey
Agus wrote: Hi everybody its been a few days now, since im trying to do a tcsh script to automatize the process of creating users in my system Users register via web, and info is saved in a MySQL DB and in a file. the script reads from the file and begins adding users with pw. but im