# Introduction In this challenge, we will implement a bash script called `genpass.sh` that generates random passwords. The generated password should be 12 characters long and meet specific requirements: it must contain at least one digit, one uppercase letter, one lowercase letter, and one special character. The goal is to create a password generator that meets these conditions and returns a different password each time it is executed. We will explore topics such as the Linux random number generator and the basics of bash script programming.
Click the virtual machine below to start practicing