curl -Ls 'http://example.com' 是否意味着它不会输出任何内容?

curl -Ls 'http://example.com' 是否意味着它不会输出任何内容?

sin是否-Ls意味着不应该输出任何内容?

如果是这样,那么输出是什么?

答案1

不,这是输出:

curl -Ls 'http://pastebin.com/raw.php?i=r2jYDZaw'
jQuery(document).ready(function(){

    //Check to see if the window is top if not then display button
    jQuery(window).scroll(function(){
        if (jQuery(this).scrollTop() > 100) {
            jQuery('.scrollToTop').fadeIn();
        } else {
            jQuery('.scrollToTop').fadeOut();
        }
    });

    //Click event to scroll to top
    jQuery('.scrollToTop').click(function(){
        jQuery('html, body').animate({scrollTop : 0},800);
        return false;
    });

});%    

来自手册页:

-s, --silent
              Silent or quiet mode. Don't show progress meter or error messages.  Makes Curl mute. It will still output  the  data  you
              ask for, potentially even to the terminal/stdout unless you redirect it.

相关内容