Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从我的终端获取一个 IP 地址,右键单击,选择服务 > Whois 并以某种方式返回结果。
这不存在,所以我想创建一个简单的 Automator 脚本来做到这一点。但是,我遇到了一些问题。
这就是我所做的 - Automator Actions:
获取指定文本(这将是 IP 地址)
为 "$@" 中的 x 运行 Shell 脚本;谁是 $x; 完毕
查看结果
但我在查看结果中得到的只是:
( "" )
有什么建议么?
您必须打印结果,使用echo.
echo
对于单个 IP 地址,请使用“ $@ ”而不是使用循环。
echo $(whois "$@")