Forrest logo
back to context overview

htpasswd

List of commands for htpasswd:

  • htpasswd:tldr:31839 htpasswd: Add user to htpasswd file in batch mode without an interactive password prompt (for script usage).
    $ htpasswd -b ${filename} ${username} ${password}
    try on your machine
    explain this command
  • htpasswd:tldr:408a0 htpasswd: Create/overwrite htpasswd file.
    $ htpasswd -c ${filename} ${username}
    try on your machine
    explain this command
  • htpasswd:tldr:76ca5 htpasswd: Add user to htpasswd file or update existing user.
    $ htpasswd ${filename} ${username}
    try on your machine
    explain this command
  • htpasswd:tldr:bef93 htpasswd: Delete user from htpasswd file.
    $ htpasswd -D ${filename} ${username}
    try on your machine
    explain this command
  • htpasswd:tldr:d6b63 htpasswd: Display a string with username (plain text) and password (md5).
    $ htpasswd -nbm ${username} ${password}
    try on your machine
    explain this command
  • htpasswd:tldr:fdeee htpasswd: Verify user password.
    $ htpasswd -v ${filename} ${username}
    try on your machine
    explain this command
back to context overview