echo is a common command to print a message onto an output device, like a display
Questions tagged [echo]
116 questions
2
votes
1 answer
Need to pass runtime parameters using echo
I have test.exe application which I run and it ask to enter password twice. In Unix I have seen this can be run using echo command for silent execution without editing the test.exe.
In Unix:
echo -e "Password\nPassword"|test.ksh
Above command…
user1728730