目前,我正在检查具有curl
和grep
的网站,以了解特定模式。
for i in {1..300}; do
curl -s http://example.com | grep "Welcome to "
status=$?
# if status is 0 - print found else not found
sleep 1;
done
如何将此shell代码转换为JavaScript代码?我想打印这样的东西:
//cURL req & get status of grep
if ( status == 0 )
alert("Its found");
else
alert("Not found Yet");
感谢任何帮助或JSFiddle参考。 :)
编辑:我遇到了这个http://jsfiddle.net/GSSCD/203/和get sourcecode after javascript execution with curl我希望有类似基于JavaScript的内容。
编辑2:在浏览器上运行,需要从浏览器验证。 Platform已经使用了jQuery(基于Flask的服务器)。