From command line, I'd like to take a script from my paste board (FYI: pbpaste is an OSX feature) and pipe it into the Node's repl command line tool. For example:
pbpaste | node -e
This does not evaluate the contents in my clipboard. How do I get the runtime to do this?
The -e
option is for running JS passed as an argument. To run JS from stdin, you can simply pipe to node
directly.
pbpaste | node
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With