Skip to content

9th October 2023

Computer Science

GNULinux

Basics

  • New: Generate a random string.

    Generate a random string to use for secrets or passwords:

    head /dev/urandom | tr -dc A-Za-z0-9 | head -c10