I would like to do something like
openssl enc -d -aes256 -in somefile | less
openssl requires a password from stdin . and it gets spoiled when less involved.
Is there a way to draw output from an interactive command (e.g. openssl with a password request) and pass the output to less ?
Or is there a better method using a bash script?
bash pipe openssl less-unix
patrick h
source share