Yes, CURL is enabled. Here is a simple test script to test the command line:

<?php
    $curl = curl_init();
    curl_setopt ($curl, CURLOPT_URL, "http://www.servage.net");
    curl_exec ($curl);
    curl_close ($curl);
?>