我有一个 bash 脚本如下:
#!/bin/bash
for i in `cat domains` ; do
tag=$(echo -n $i" - "; whois $i | grep -o "Expir.*")
reg=$(echo -n -" "; whois $i | grep "Registrar:")
echo $tag $reg
sleep .5s
done;
我希望有一个 php 页面,用户可以在其中粘贴域列表,当他们点击发送时,它会调用 bash 脚本处理域并返回输出。这可能吗?