-X curl paramer code example
Example 1: curl for beginners
curl http://www.dataden.tech
Example 2: xargs curl url
Just use xargs to use pipe output as follows:
echo "site_path" | xargs -I % curl http://domain.com/path/%.tar
curl http://www.dataden.tech
Just use xargs to use pipe output as follows:
echo "site_path" | xargs -I % curl http://domain.com/path/%.tar