Re: Question: Printing and Clipping Password Info

2021-10-23 Thread Ayush Agarwal
Hi Mitch, You might be interested in a tool I made called tessen [1]. It was specifically addressed to deal with both copying and auto-typing of data and having the flexibility to choose either of those actions or both of them simultaneously. This only works on Linux and Wayland though. If

Re: Question: Printing and Clipping Password Info

2021-10-23 Thread Greg Minshall
Mitch, i think you could: pass fubar | \ tee >(awk 'NR > 1 {print}' > /dev/tty) | \ awk 'NR == 1 { print }' | \ xclip -i -selection clipboard (YSMV == your shell may vary). cheers, Greg