Forrest logo
back to the apg tool

apg:tldr:6069b

apg: Create random passwords (default password length is 8).
$ apg
try on your machine

The command "apg" stands for "automated password generation". It is a command-line tool that generates random and secure passwords based on user-specified criteria.

When you run the "apg" command, it will display a randomly generated password on the terminal. This password will meet certain security requirements, such as a minimum length, a combination of uppercase and lowercase letters, numbers, and special characters.

Here is an example of how to use the "apg" command:

apg -n 1 -m 16 -x 20

In this example, the command will generate one password with a minimum length of 16 characters and a maximum length of 20 characters.

You can customize the criteria by using various options. Some common options include:

  • -n: Specifies the number of passwords to generate.
  • -m: Defines the minimum password length.
  • -x: Sets the maximum password length.
  • -a: Includes at least one lowercase character.
  • -A: Includes at least one uppercase character.
  • -d: Includes at least one digit.
  • -c: Includes at least one special character.

These options allow you to generate passwords that fit specific requirements or policies, making them more secure for various applications.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the apg tool