Re: pass password thru a filter on way to clipboard?

2017-11-24 Thread Alec Clews
Thanks for the suggestion. However it had no affect.     /usr/local/bin/pandoc --number-sections -s -smart -f markdown+startnum BlogPost.pmd -o BlogPost.docx     [WARNING] Deprecated: --latexmathml Could this be a bug? I am happy to supply input markdown file. On 24/11/17 21:49, Till

Re: pass password thru a filter on way to clipboard?

2017-11-24 Thread Till Schäfer
Hi, you can also just use the show command and pipe it through the standard tool chain of your shell. If you are using X, you can then pipe it to the X clipboard via xclip. pass show XYZ | head -n 1 | tr -d '\n' | sed 's/ //g' | xclip -selection clipboard A little bit formatting noise,