This function generates a random password of a specified length. It includes
alphanumeric characters by default and can optionally include special characters.
Usage
generate_pw(length = 16, special_chr = TRUE)
Value
A character string representing the generated password.
Arguments
length
Integer. The length of the password to generate. Default is 16.
special_chr
Logical. Whether to include special characters
(e.g., `!`, `@`, `#`, etc.) in the password. Default is TRUE.