-
The macOS command line screencapture utility can’t output to stdout and for some reason fails using process substitution (e.g., screencapture >(magick) ). Does anyone have suggestions to avoid using a temp file? Want to avoid the performance hit of from file IO.
-
You can tell screencapture to output to the clipboard, so I was able to speed things up using jcsalterego’s nifty pngpaste utility, but that means my script overwrites clipboard contents, which I’d rather it not do