DEV Community

Discussion on: What's Been Your Biggest "Why Didn't Someone Tell Me" Discovery?

Collapse
 
thatblairguy profile image
That Blair Guy

Huge thing for me was learning how to put the output from the command line directly to the clipboard without going through an intermediate temp file.

Windows: some_command | clip
MacOS: some_command | pbcopy

(For Linux, I believe xclip is popular, but I'm not completely sure.)