답변:
입력을 쉘 스크립트 에 STDIN이 아닌 인수 로 전달하십시오 .
결과를 표시하려면 AppleScript 실행 을 패널의 맨 아래로 드래그 하고 다음 명령을 사용하십시오.
on run {input, parameters}
set msg to ""
repeat with itm in input
set msg to msg & "
" & itm
end repeat
tell application "Finder"
display alert "Whois" message msg
end tell
end run