Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

generate a random password bash

tr -dc 'A-Za-z0-9!"#$%&'''()*+,-./:;<=>?@[]^_`{|}~' </dev/urandom | head -c 13  ; echo
Comment

password generator bash

< /dev/urandom tr -dc _A-Z-a-z-0-9 | head -c${1:-32};echo;
Comment

password generator bash

date +%s | sha256sum | base64 | head -c 32 ; echo
Comment

PREVIOUS NEXT
Code Example
Shell :: github desktop download for ubuntu 
Shell :: find exclude 
Shell :: delete lines text file linux 
Shell :: linux 
Shell :: Is the docker daemon running? 
Shell :: mongodb start 
Shell :: git stash example 
Shell :: using yarn in docker 
Shell :: add flathub repository fedora 
Shell :: ubuntu see date of last modification to file 
Shell :: git push and pull not asking password 
Shell :: delete directory from cmd 
Shell :: wsl settings 
Shell :: Install Strimio on ubuntu 
Shell :: supervisord install ubuntu 
Shell :: bash script to clean up log files in /var/log 
Shell :: grafana docker password 
Shell :: install paddlepaddle 
Shell :: set github ssh key 
Shell :: install cypress dev only 
Shell :: running splash in docker command line 
Shell :: build docker file with no cache 
Shell :: check connected wifi details on kali 
Shell :: enable ssh linux 
Shell :: git take ours 
Shell :: unzip file to folder 
Shell :: sudo passwd /Users/username 
Shell :: new branch from existing branch 
Shell :: see changes git command line 
Shell :: react-darkmode-toggler 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =