Generate passwords from CLI

Problem

Simple and easy method for generating random passwords from the command line.

Solution

Use the command below:

LC_ALL=C </dev/urandom tr -cd ‘[:alnum:]’ | head -c 32

Explanation

This command generate…


This content originally appeared on DEV Community and was authored by Alberto Gonzalez Escalante

Problem

Simple and easy method for generating random passwords from the command line.

Solution

Use the command below:

LC_ALL=C </dev/urandom tr -cd '[:alnum:]' | head -c 32

Explanation

This command generates a random string, remove non-alphanumeric characters and print the first 32 characters.

Adjust the length of the password by changing the number after -c in head -c 32.

Add symbols by replacing the character class with [:graph:] as in tr -cd '[:graph:]'.


This content originally appeared on DEV Community and was authored by Alberto Gonzalez Escalante


Print Share Comment Cite Upload Translate Updates
APA

Alberto Gonzalez Escalante | Sciencx (2025-10-21T09:26:35+00:00) Generate passwords from CLI. Retrieved from https://www.scien.cx/2025/10/21/generate-passwords-from-cli/

MLA
" » Generate passwords from CLI." Alberto Gonzalez Escalante | Sciencx - Tuesday October 21, 2025, https://www.scien.cx/2025/10/21/generate-passwords-from-cli/
HARVARD
Alberto Gonzalez Escalante | Sciencx Tuesday October 21, 2025 » Generate passwords from CLI., viewed ,<https://www.scien.cx/2025/10/21/generate-passwords-from-cli/>
VANCOUVER
Alberto Gonzalez Escalante | Sciencx - » Generate passwords from CLI. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2025/10/21/generate-passwords-from-cli/
CHICAGO
" » Generate passwords from CLI." Alberto Gonzalez Escalante | Sciencx - Accessed . https://www.scien.cx/2025/10/21/generate-passwords-from-cli/
IEEE
" » Generate passwords from CLI." Alberto Gonzalez Escalante | Sciencx [Online]. Available: https://www.scien.cx/2025/10/21/generate-passwords-from-cli/. [Accessed: ]
rf:citation
» Generate passwords from CLI | Alberto Gonzalez Escalante | Sciencx | https://www.scien.cx/2025/10/21/generate-passwords-from-cli/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.