To be a better coder
发布时间:2018-11-08 13:57:44
c=$a$bc=$a"xyz"$bc=$a$b.txtip=`cat /etc/yunhai.ini | grep cloud | cut -d "=" -f2 | cut -d "/" -f1`http="http://"$ip":80/"1.expr substr “$a” 1 8 2.echo $a|awk ‘{print substr(,1,8)}’ 3.echo $a|cut -c1-8 --------------------- ......【阅读全文】
发布时间:2018-11-08 13:52:46
##GET 上传$curl http://www.yahoo.com/login.cgi?user=nickwolfe&password=12345 ##POST 上传$curl -d "user=nickwolfe&password=12345" http://www.yahoo.com/login.cgihttp提交一个表单,比较常用的是POST模式和GET模式 GET模式什么option都不用,只需要把变量写在url里面就可以了比如:curl http://www.........【阅读全文】