February 9 Linux Run Command As Another User runuser -l username -c 'cd $;pwd' Original post Category: simple memo | LEAVE A COMMENT
February 9 Password generation in command line #bash generate random 32 character alphanumeric string (upper and lowercase) cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 original post on the github.com Category: simple memo | LEAVE A COMMENT