Current File : //bin/hrpass
#!/bin/bash
if [[ $# -eq 1 ]]; then
    if [[ $1 == "1234" ]];then
        cat /root/passwords.txt
    else
        echo "Wrong Pin"
    fi
else
    echo "Please enter your pin"
fi