Skip to content

Instantly share code, notes, and snippets.

@bacongravy
Last active December 13, 2021 15:09
Show Gist options
  • Save bacongravy/d9f22aa4f49e6c3a5714fb3a6becec7b to your computer and use it in GitHub Desktop.
Save bacongravy/d9f22aa4f49e6c3a5714fb3a6becec7b to your computer and use it in GitHub Desktop.
pwcopy.zsh
function pwcopy {
< /dev/urandom \
LANG= \
tr -dc a-zA-Z0-9 \
| head -c ${1:-16} \
| pbcopy \
&& pbpaste \
&& echo
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment