Bash에서는 방금 시작된 실행 중인 프로세스에 어떻게 명령을 실행합니까?
예를 들어;
# Start Bluez gatttool then Connect to bluetooth device
gatttool -b $MAC -I
connect # send 'connect' to the gatttool process?
현재 프로세스가 실행 중이기 connect
때문에 내 쉘 스크립트가 해당 행에 도달할 수 없습니다.gatttool
답변1
작동합니다!
당신은 시도 할 수 있습니다
echo "connect" | gatttool -b $MAC -I
Maz에게 전적인 공로를 인정합니다.