I have an external java application (blackbox), which requires authentication. I need to run this application in a batch setting, but it seems to be reading from standard input in some nonstandard way. That is, if I set the calling of the program to redirect STDIN to a file (... <password.txt
) or pipe data to it (echo mypasword | ...
), it does not recognize the input. As I run it, also, it seems to intercept Cntrl+c
and Cntrl+d
and Cntrl+z
as legitimate password characters, so it must be doing something odd and not just reading from standard in.
Any idea what this application could be doing to read in input? I need to be able to send it information programmatically, and I'm stumped for the moment.