is there a way to copy a string to clipboard from command line?
To be more specific, I want to make a script which copies my email address to clipboard, so that when I n
You need to pipe the output of your script to pbcopy
pbcopy
For example:
./somescript.sh | pbcopy