trenta3 / pwgen

Generate pronounceable passwords

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pwgen - generate pronounceable passwords

About

I am the well known password generator pwgen. You can read more about me on my manual page.

How did I get here on GitHub?

Philipp took my sources from the sourceforge project site and republished me as a Git repository here on GibHub.

To get there, he downloaded the .tar.gz packages from the download section of the project on sf.net. A git cvsimport was not possible as newer versions were not checked-in to CVS on SF.net. To automatically create the repository, he used the following Bash Script:

#!/bin/bash

for version in 2.0 2.01 2.02 2.03 2.04 2.05 2.06
do
    wget http://sourceforge.net/projects/pwgen/files/pwgen/$version/pwgen-$version.tar.gz/download
done

mkdir pwgen
cd pwgen
git init
cd ..

for archive in $(ls pwgen*tar.gz)
do
    tar -xf $archive
    cd pwgen; git rm -rf *; cd ..
    archive_dir=$(basename $archive .tar.gz)
    mv $archive_dir/* pwgen/
    cd pwgen; git add .; git commit -m "automatic commit for $archive_dir"; cd ..
    rm -rf $archive_dir
done

Issues

For an overview over the current status on Debian & Ubuntu have a look at the Debian package tracking system (including information about bugs etc): http://packages.qa.debian.org/p/pwgen.html. Also helpful: Ubuntu's Bugtracker for pwgen.

The author

  • Theodore Ts'o tytso@alum.mit.edu
    Modelled after a program originally written by Brandon S. Allbery, and then later extensively modified by Olaf Titz, Jim Lynch, and others.

Ports to Other Lanugages and Alternatives

About

Generate pronounceable passwords


Languages

Language:C 64.4%Language:Roff 12.3%Language:Shell 11.8%Language:Makefile 9.0%Language:Perl 1.6%Language:sed 1.0%