Sunday 9 December 2018

MakeFile

Make File

# vim MakeFile

MakeFile:

anything:  runscript  runcurl
runscript:
         php myscript.php
runcurl: 
       seq 4 | parallel -n0 -j2 "curl -H 'Content-Type: application/json'  -X GET http://127.0.0.1/test"


# wq!

# make anything

No comments:

Post a Comment