Certifique-se de passar a entrada para o shell script como argumentos e não para STDIN:
Paramostrarosresultados,vocêpodearrastarExecutarAppleScriptparaaparteinferiordopaineleusarosseguintescomandos:
onrun{input,parameters}setmsgto""
repeat with itm in input
set msg to msg & "
" & itm
end repeat
tell application "Finder"
display alert "Whois" message msg
end tell
end run