bash-3.2$ echo "apps" | adop -status
stty: standard input: Invalid argument
Enter the APPS password: stty: standard input: Invalid argument
나도 이것을 시도했지만 stty -ixon;echo "apps" | adop -status
같은 오류가 발생했습니다.
답변1
다음 프로세스를 통해 expect
터미널을 가짜로 만들고 입력을 제공할 수 있습니다 .adop
spawn
#!/usr/bin/env expect
spawn -noecho adop -status
send "apps"
expect -ex "Enter the APPS password"
send "thepassword"
답변2
모두 감사합니다. 저는 그것을 사용하고 echo "apps" | adop -status 2>/dev/null
있으며 아주 잘 작동합니다.